 @charset "UTF-8";
 @import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');
 @import url(https://fonts.googleapis.com/css?family=Asap:400,700);
 @import url(https://fonts.googleapis.com/css?family=Bree+Serif&subset=latin-ext,latin);
 @font-face {
     font-family: 'Expo';
     src: url('../fonts/FFShamelRounded-Bold.woff');
     font-weight: bold;
     font-style: bold;
     font-display: swap;
 }
 
 @font-face {
     font-family: 'Expo';
     src: url('../fonts/FFShamelRounded-Normal.woff');
     font-weight: 100;
     font-style: light;
     font-display: swap;
 }
 
 @font-face {
     font-family: 'Expo';
     src: url('../fonts/FFShamelRounded-Medium.woff');
     font-weight: 800;
     font-style: medium;
     font-display: swap;
 }
 
 * {
     margin: 0px;
     padding: 0px;
     overflow-x: unset;
     box-sizing: border-box;
 }
 
 *,
 html {
     scroll-behavior: smooth !important;
 }
 
 :root {
     --main: #003A70;
     --body: #F9FAFA;
     --secondary: #FFC629;
     --text: #858585;
     --darkText: #474747;
     --white: #FFFFFF;
     --light-gray: #D2D2D2;
     --card-fill: #F6F6F6;
     --darkMain: #012c54;
     --lighter-gray: #e1dfdf;
 }
 
 ::-webkit-scrollbar {
     width: 10px;
 }
 
 ::-webkit-scrollbar-track {
     background: #f1f1f1;
 }
 
 ::-webkit-scrollbar-thumb {
     background: var(--main);
     border-radius: 20px;
 }
 
 ::-webkit-scrollbar-thumb:hover {
     background: var(--darkMain);
 }
 
 body {
     background-color: var(--body);
     font-family: Nunito, Expo, sans-serif !important;
     font-weight: 100;
     overflow-x: hidden;
     scroll-behavior: smooth;
     width: 100%;
 }
 
 button {
     cursor: pointer;
     font-family: Expo, sans-serif !important;
 }
 
 input::placeholder {
     font-family: Expo, sans-serif !important;
 }
 
 .error {
     color: rgb(238, 34, 34);
 }
 
 .noBackground {
     background-color: unset !important;
     border: none !important;
 }
 
 .blogsPageHive img {
     width: 20px;
     margin-right: .5rem;
     margin-left: .5rem;
 }
 
 p {
     line-height: 25px;
 }
 
 .modal {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     width: 100%;
     min-height: 250px;
     position: fixed;
     z-index: 9999;
     top: 0;
     bottom: 0;
 }
 
 .modal-container {
     display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 0.4rem;
     width: 80%;
     padding: 1.3rem;
     min-height: 250px;
     background-color: white;
     border: 1px solid #ddd;
     border-radius: 15px;
     max-width: 500px;
 }
 
 .modal .flex {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }
 
 .modal video {
     height: 80%;
     padding: 2rem;
 }
 
 button {
     cursor: pointer;
     border: none;
     font-weight: 600;
 }
 
 .btn {
     display: inline-block;
     padding: 0.8rem 1.4rem;
     font-weight: 700;
     background-color: black;
     color: white;
     border-radius: 5px;
     text-align: center;
     font-size: 1em;
 }
 
 .btn-close {
     transform: translate(10px, -20px);
     padding: 0.5rem 0.7rem;
     background: #eee;
     border-radius: 50%;
 }
 
 .overlay {
     position: fixed;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     width: 100%;
     height: 100%;
     background: rgb(0 137 153 / 25%);
     backdrop-filter: blur(3px);
     z-index: 9998;
 }
 
 .hidden {
     display: none;
 }
 
 ._2cols {
     display: grid;
     grid-template-columns: repeat(2, minmax(0px, auto));
     justify-content: start;
     align-items: center;
 }
 
 ._3cols {
     display: grid;
     grid-template-columns: repeat(3, minmax(0px, auto));
     justify-content: start;
     align-items: center;
 }
 
 .wholeheader {
     height: 100vh;
     position: relative;
     top: 0;
     bottom: 0;
 }
 
 .floatingButton {
     position: fixed;
     bottom: 15px;
     right: 15px;
     z-index: 8888;
     transition: all .3s ease;
 }
 
 .floatingButton:hover {
     bottom: 20px;
     transition: all .3s ease;
 }
 
 .floatingButton img {
     width: 56px;
     position: relative;
     z-index: 888888;
 }
 
 .withQuote h2 {
     padding: 0;
     padding-bottom: 0;
     margin-left: 1rem;
     color: var(--main);
     font-weight: 800;
     font-size: 1.5rem;
 }
 
 .withQuoteWhite h2 {
     color: var(--main);
     margin: 0;
 }
 
 .noData {}
 
 .noData img {
     width: 60px;
 }
 
 .noData p {
     color: var(--main);
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }
 
 .withQuote img {
     position: relative;
     right: -45px;
 }
 
 .withQuoteWhite img {
     right: unset;
     padding: 0em 3em;
     position: relative;
     z-index: 1;
 }
 
 #menu__toggle {
     opacity: 0;
 }
 
 #menu__toggle:checked~.menu__btn>span {
     transform: rotate(45deg);
 }
 
 #menu__toggle:checked~.menu__btn>span::before {
     top: 0;
     transform: rotate(0);
 }
 
 #menu__toggle:checked~.menu__btn>span::after {
     top: 0;
     transform: rotate(90deg);
 }
 
 #menu__toggle:checked .sidebar {
     visibility: visible;
 }
 
 .menu__btn {
     display: flex;
     align-items: center;
     position: fixed;
     top: 8px;
     left: 20px;
     width: 26px;
     height: 26px;
     cursor: pointer;
     border-radius: 4px;
     z-index: 1;
     visibility: hidden;
     background-color: #fff;
 }
 
 .menu__btn>span,
 .menu__btn>span::before,
 .menu__btn>span::after {
     display: block;
     position: absolute;
     width: 100%;
     height: 2px;
     background-color: #616161;
     transition-duration: 0.25s;
 }
 
 .menu__btn>span::before {
     content: "";
     top: -8px;
 }
 
 .menu__btn>span::after {
     content: "";
     top: 8px;
 }
 
 .menu__box {
     display: block;
     position: fixed;
     visibility: hidden;
     top: 0;
     left: -100%;
     width: 300px;
     height: 100%;
     margin: 0;
     padding: 80px 0;
     list-style: none;
     background-color: #eceff1;
     transition-duration: 0.25s;
 }
 
 .menu__item {
     display: block;
     padding: 12px 24px;
     color: #333;
     font-family: "Roboto", sans-serif;
     font-size: 20px;
     font-weight: 600;
     text-decoration: none;
     transition-duration: 0.25s;
 }
 
 .menu__item:hover {
     background-color: #cfd8dc;
 }
 
 .container {
     width: 100%;
 }
 
 .content {
     padding: 3em;
     margin-left: 300px;
 }
 
 .sidebar {
     left: 0;
     width: 300px;
     height: 100%;
     background: var(--main);
     position: fixed;
     top: 0;
     bottom: 0;
     padding-bottom: 2em;
     box-shadow: 0 0 3px 0 rgb(202, 202, 202);
     visibility: visible;
     transition-duration: 0.25s;
     z-index: 2;
 }
 
 .sidebar ul {
     width: 100%;
     height: fit-content;
     list-style: none;
 }
 
 .sidebar ul li a {
     text-decoration: none;
     color: #fff;
     font-weight: bold;
     font-size: 0.9em;
     display: block;
     padding: 0em 1em;
     position: relative;
     width: 100%;
     height: 100%;
 }
 
 .sidebar ul li:hover a {
     color: var(--text);
 }
 
 .sidebar ul li img {
     filter: brightness(0) invert(1);
 }
 
 .sidebar ul li:hover img {
     filter: brightness(0) invert(0);
 }
 
 .sidebar ul li {
     padding: 0.8em 0.5em;
     margin-bottom: 0em;
     transition: all 0.1s ease;
     width: 100%;
 }
 
 .sidebar ul li:hover {
     border-left-color: var(--secondary);
     border-left-style: solid;
     transition: all 0.1s ease;
     background-color: var(--body);
 }
 
 .sidebar .active {
     border-left-color: var(--secondary);
     border-left-style: solid;
     transition: all 0.1s ease;
     background-color: var(--body);
 }
 
 .active a {
     color: var(--text) !important;
 }
 
 .sidebar::-webkit-scrollbar {
     width: 8px;
 }
 
 .sidebar::-webkit-scrollbar-track {
     background: transparent;
 }
 
 .sidebar::-webkit-scrollbar-thumb {
     background-color: #fb770d;
     border-radius: 20px;
     border: 3px solid transparent;
 }
 
 .subMenu ul {
     background-color: var(--body);
     margin-top: 1em;
 }
 
 */.logo {
     padding: 1.5em 0em;
     color: #fff;
 }
 
 section {
     padding: 2em;
     padding-top: 3rem;
     overflow-x: hidden;
 }
 
 section>div {
     margin-bottom: 2em;
 }
 
 .singleLongCard {
     margin-bottom: 2rem;
 }
 
 section>h1:first-of-type,
 h2,
 h3,
 h4 {
     color: var(--main);
     padding-bottom: 1em;
     width: 73%;
 }
 
 .headings>* {
     padding-bottom: 1em;
 }
 
 .buttons {
     padding: 1em 1em;
 }
 
 .buttonDanger {
     background-color: rgb(250, 70, 70);
     padding: 0.7em 1em;
     border-radius: 5px;
     border-style: none;
     color: #fff;
     font-weight: bold;
     transition: all 0.3s ease;
 }
 
 .buttonWarn {
     background-color: rgb(182, 169, 50);
     padding: 0.7em 1em;
     border-radius: 5px;
     border-style: none;
     color: #fff;
     font-weight: bold;
     transition: all 0.3s ease;
 }
 
 .buttonSubmit {
     background-color: var(--secondary) !important;
     padding: 0.7em 1em;
     border-radius: 5px;
     border-style: none;
     color: var(--main);
     text-decoration: none;
     font-weight: bold;
     transition: all 0.3s ease;
 }
 
 .buttonDisable {
     background-color: rgb(134, 134, 134);
     padding: 0.7em 1em;
     border-radius: 5px;
     border-style: none;
     color: #fff;
     font-weight: bold;
     transition: all 0.3s ease;
 }
 
 button:hover {
     opacity: 0.9;
     transition: all 0.3s ease;
 }
 
 .buttonsGlass {
     background: #fbd3e9;
     background: -webkit-linear-gradient(to right, #bb377d, #fbd3e9);
     background: linear-gradient(to right, #bb377d, #fbd3e9);
     padding: 1em 1em;
     border-radius: 5px;
 }
 
 .buttonsGlass>* {
     margin-right: 0.3em;
 }
 
 .buttonDangerGlass {
     background: rgb(250, 70, 70, 0.5);
     box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
     backdrop-filter: blur(4px);
     -webkit-backdrop-filter: blur(4px);
     padding: 0.7em 1em;
     border-radius: 5px;
     border-style: none;
     color: #fff;
     font-weight: bold;
     transition: all 0.3s ease;
 }
 
 .buttonWarnGlass {
     background: rgb(182, 169, 50, 0.5);
     box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
     backdrop-filter: blur(4px);
     -webkit-backdrop-filter: blur(4px);
     padding: 0.7em 1em;
     border-radius: 5px;
     border-style: none;
     color: #fff;
     font-weight: bold;
     transition: all 0.3s ease;
 }
 
 .buttonSubmitGlass {
     background: rgb(98, 100, 241, 0.5);
     box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
     backdrop-filter: blur(4px);
     -webkit-backdrop-filter: blur(4px);
     padding: 0.7em 1em;
     border-radius: 5px;
     border-style: none;
     color: #fff;
     font-weight: bold;
     transition: all 0.3s ease;
 }
 
 .buttonDisableGlass {
     background: rgb(134, 134, 134, 0.5);
     box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
     backdrop-filter: blur(4px);
     -webkit-backdrop-filter: blur(4px);
     padding: 0.7em 1em;
     border-radius: 5px;
     border-style: none;
     color: #fff;
     font-weight: bold;
     transition: all 0.3s ease;
 }
 
 .wholeCards {
     width: 100%;
 }
 
 .wholeCardsServicesIndex {
     grid-template-columns: repeat(3, minmax(0px, 433px)) !important;
 }
 
 .singleCard {
     margin: .5rem;
     padding: 1rem 2rem;
     border-radius: 25px;
     background-color: var(--card-fill);
     border-style: solid;
     border-color: var(--light-gray);
     border-width: 1px;
     align-self: normal;
 }
 
 .serviceCard {
     padding: 2rem;
     transition: all .3s ease;
 }
 
 .serviceCard:hover {
     border-color: var(--secondary);
     transition: all .3s ease;
 }
 
 .singleCard h1 {
     color: #fff;
 }
 
 .singleCard p {}
 
 .longCardDetails {
     padding: 0em 2em;
 }
 
 .longCardDetails h1 {
     color: #202020;
     padding-bottom: 1em;
 }
 
 .longCardDetails p {
     color: #707070;
 }
 
 .singleLongCard img {
     width: 100%;
     height: 100%;
 }
 
 .ops {
     padding-top: 1em;
 }
 
 .table {}
 
 #myTable {
     padding-top: 1rem;
 }
 
 table {
     width: 100%;
 }
 
 table thead th {
     background-color: var(--secondary);
 }
 
 table {}
 
 table thead {
     background-color: #bb377d;
 }
 
 table thead th {
     background-color: var(--secondary) !important;
     color: #fff;
     border-radius: 0 !important;
 }
 
 table thead tr {
     padding: 0;
     padding-top: 0.5em;
     background-color: #ceb457 !important;
 }
 
 table tbody {}
 
 table tbody tr {
     padding: 0;
     margin: 0;
     box-shadow: 0 0 1px 0 rgb(148, 148, 148);
     margin-bottom: 0.3em;
 }
 
 table tbody tr:nth-child(even) {
     background-color: #ceb45756;
 }
 
 table tbody tr td {
     margin-right: 0em;
     border-radius: 0;
     margin-bottom: 0em;
     background-color: transparent;
     color: #707070;
 }
 
 table thead tr {}
 
 table thead tr th {}
 
 td,
 th {
     padding: 0.5rem;
     background-color: white;
     border-radius: 5px;
     border: none !important;
 }
 
 .container {
     padding-right: 15px;
     padding-left: 15px;
     margin-right: auto;
     margin-left: auto;
 }
 
 .innerHeader {
     height: 65px;
 }
 
 .mainList {
     height: 100%;
 }
 
 .header {
     padding: 0em 1rem;
     height: fit-content;
     font-size: .8rem;
     background-color: var(--body);
     border: none;
     box-shadow: none;
     background-color: none !important;
 }
 
 .logo {
     width: 60px;
 }
 
 .logo img {
     width: 100%;
 }
 
 nav ul {
     list-style: none;
 }
 
 nav ul li {
     margin: 0rem 1rem;
     height: 100% !important;
     display: flex;
     justify-content: center;
     align-items: center;
 }
 
 nav ul a {
     text-decoration: none;
     color: var(--font-color-main);
     transition: all .1s ease;
     text-decoration: none;
     height: 100%;
 }
 
 nav ul a:hover {
     height: 100%;
     color: var(--main);
     border-bottom: solid 3px var(--main);
     transition: all .1s ease;
 }
 
 .activeNav {
     height: 100%;
     color: var(--main);
     border-bottom: solid 3px var(--main);
     transition: all .1s ease;
 }
 
 nav ul li {
     transition: all .1s ease;
 }
 
 .loginButton a {
     background-color: transparent;
     padding: 0.8rem 1.8rem 0.8rem 1.8rem;
     text-decoration: none;
     color: var(--main);
     border-radius: 20px;
     font-weight: 100;
     border: solid;
     border-width: 1px;
     border-color: var(--main);
     position: relative;
     transition: all .3s ease;
     transform: scale(1);
 }
 
 .loginButton a:hover {
     transform: scale(1.1);
     transition: all .3s ease;
     background-color: var(--main);
     color: var(--white);
 }
 
 .heroDetails a:hover {
     background-color: var(--white-hover);
     transition: all .5s ease;
 }
 
 .responsive {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: var(--white);
     height: 100vh;
     z-index: 9999;
     transform: translateY(-1000px);
     transition: all .5s ease;
 }
 
 .hamburger {
     padding: 15px 15px;
     display: inline-block;
     cursor: pointer;
     transition-property: opacity, filter;
     transition-duration: 0.15s;
     transition-timing-function: linear;
     font: inherit;
     color: inherit;
     text-transform: none;
     background-color: transparent;
     border: 0;
     margin: 0;
     overflow: visible;
     display: none;
     position: relative;
     z-index: 99999;
 }
 
 .hamburger:hover {
     opacity: 0.7;
 }
 
 .hamburger.is-active:hover {
     opacity: 0.7;
 }
 
 .hamburger.is-active .hamburger-inner,
 .hamburger.is-active .hamburger-inner::before,
 .hamburger.is-active .hamburger-inner::after {
     background-color: #000;
 }
 
 .hamburger-box {
     width: 40px;
     height: 24px;
     display: inline-block;
     position: relative;
 }
 
 .hamburger-inner {
     display: block;
     top: 50%;
     margin-top: -2px;
 }
 
 .hamburger-inner,
 .hamburger-inner::before,
 .hamburger-inner::after {
     width: 40px;
     height: 4px;
     background-color: #000;
     border-radius: 4px;
     position: absolute;
     transition-property: transform;
     transition-duration: 0.15s;
     transition-timing-function: ease;
 }
 
 .hamburger-inner::before,
 .hamburger-inner::after {
     content: "";
     display: block;
 }
 
 .hamburger-inner::before {
     top: -10px;
 }
 
 .hamburger-inner::after {
     bottom: -10px;
 }
 
 .hamburger--squeeze .hamburger-inner {
     transition-duration: 0.075s;
     transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
 }
 
 .hamburger--squeeze .hamburger-inner::before {
     transition: top 0.075s 0.12s ease, opacity 0.075s ease;
 }
 
 .hamburger--squeeze .hamburger-inner::after {
     transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
 }
 
 .hamburger--squeeze.is-active .hamburger-inner {
     transform: rotate(45deg);
     transition-delay: 0.12s;
     transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
 }
 
 .hamburger--squeeze.is-active .hamburger-inner::before {
     top: 0;
     opacity: 0;
     transition: top 0.075s ease, opacity 0.075s 0.12s ease;
 }
 
 .hamburger--squeeze.is-active .hamburger-inner::after {
     bottom: 0;
     transform: rotate(-90deg);
     transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
 }
 
 .regular {
     display: block;
 }
 
 .show {
     display: flex;
 }
 
 .hide {
     display: none;
 }
 
 .slideIn {
     transform: translateY(0);
     transition: all .5s ease;
 }
 
 .responsive ul li {
     font-size: 1.3em;
     margin-bottom: 3rem;
 }
 
 #circle {
     width: 16px;
     height: 16px;
     background: red;
     border-radius: 50%;
     -moz-border-radius: 50%;
     -webkit-border-radius: 50%;
     line-height: 20px;
     vertical-align: middle;
     text-align: center;
     color: white;
 }
 
 #circleGreen {
     width: 16px;
     height: 16px;
     background: green;
     border-radius: 50%;
     -moz-border-radius: 50%;
     -webkit-border-radius: 50%;
     line-height: 20px;
     vertical-align: middle;
     text-align: center;
     color: white;
 }
 
 .cardImage {
     width: 641px;
     object-fit: contain;
     height: 200px;
 }
 
 .cardImage img {
     object-fit: cover;
 }
 
 #hero {
     height: fit-content;
     background-color: var(--main);
     margin: 0;
     padding-bottom: 0rem !important;
     padding-top: 0rem !important;
 }
 
 .heroDown {
     margin-bottom: 1rem !important;
 }
 
 .rightSection h1 {
     font-size: 2.5rem;
     color: var(--secondary);
     font-weight: 300;
     margin-left: 0.5rem;
     margin-right: 0.5rem;
 }
 
 .en .rightSection h1 {
     font-size: 1.7rem;
     color: var(--secondary);
     font-weight: 300;
     margin-left: 0.5rem;
     margin-right: 0.5rem;
 }
 
 .rightSection p {
     color: #ffffff;
     margin-bottom: 2.5rem;
     margin-top: 1.5rem;
     font-weight: 100;
     font-size: 1.2rem;
 }
 
 .en .rightSection p {
     text-align: left;
 }
 
 #hero .rightSection,
 #hero .leftSection {
     width: 50%;
 }
 
 .myButton a {
     background-color: var(--secondary);
     padding: 1rem 2.3rem;
     text-decoration: none;
     color: var(--darkText);
     border-radius: 20px;
     font-weight: 100;
     border-width: 1px;
     position: relative;
     transition: all .3s ease;
 }
 
 .myButton:hover a {
     padding: 1rem 2.6rem;
     transform: scale(1.1);
     transition: all .3s ease;
     background-color: var(--white);
     color: var(--main);
     border-radius: 20px;
 }
 
 .leftSection img {
     width: 70%;
     transition: all .3s ease;
     transform: rotate(0deg)
 }
 
 .leftSection img:hover {
     width: 70%;
     transition: all .3s ease;
     transform: rotate(3deg)
 }
 
 .downArrow {
     bottom: 0;
     width: fit-content;
     margin: auto 0;
 }
 
 .downArrow img:nth-child(1) {
     width: 30px;
 }
 
 .downArrow img:nth-child(2) {
     transform: translateY(-30px);
     transition: all .3s ease;
     opacity: 0;
 }
 
 .downArrow:hover img:nth-child(2) {
     transform: translateY(0px);
     transition: all .3s ease;
     opacity: 1;
 }
 
 .downArrow:hover .toYellow {
     fill: var(--secondary);
     transition: all .3s ease;
 }
 
 .toYellow {
     transition: all .3s ease;
 }
 
 #about {
     padding-top: 5rem;
     overflow: hidden;
 }
 
 .aboutWithBg {
     background-color: var(--main);
 }
 
 .statsContainer {
     position: relative;
 }
 
 .titleYellow {
     color: var(--secondary) !important;
 }
 
 .paraWithBackground {
     background-color: var(--white);
     border-radius: 25px;
     border-top-right-radius: 0px;
     border-bottom-right-radius: 0px;
     z-index: 2;
 }
 
 .paraWithBackground::before {
     content: "";
     height: 100%;
     background: var(--white);
     position: absolute;
     width: 3000px;
     left: 0;
     z-index: 1;
     border-radius: 25px;
 }
 
 .paraWithBackground p {
     margin-top: 1rem;
     margin-bottom: 1rem;
 }
 
 .paraWithBackground p,
 .paraWithBackground img {
     z-index: 2;
 }
 
 .aboutImageAbsolute {
     position: absolute;
     left: 0;
     bottom: 0;
     width: 259px;
 }
 
 .en .aboutImageAbsolute {
     left: unset;
     right: 0;
     transform: scaleX(-1);
 }
 
 .projectsTitle {
     width: 200px;
 }
 
 .aboutImageAbsoluteProjects {
     position: absolute;
     left: 0;
     bottom: 0;
     width: 545px;
 }
 
 .sliderBorder {
     border-left-style: solid;
     padding-right: .5rem;
     padding-left: .5rem;
     height: 30px;
     border-left-color: var(--main);
 }
 
 .en .aboutImageAbsoluteProjects {
     left: unset;
     right: 0;
     transform: scaleX(-1);
 }
 
 .paraQuotes {
     position: relative;
     top: -35px;
     left: 0;
     /* margin-right: .5rem;
     margin-left: .5rem; */
 }
 
 .en .paraQuotes {
     position: relative;
     top: -35px;
     left: 0;
     transform: scaleX(-1);
     /* margin-right: .5rem;
     margin-left: .5rem; */
 }
 
 .paraWithQuotes {
     color: var(--main) !important;
 }
 
 .myServicesHome {
     padding-top: 5rem;
     padding-bottom: 7rem;
     background-repeat: no-repeat;
     background-position: top right;
 }
 
 .withQuote {
     margin-bottom: 1.5rem;
 }
 
 .withNoWidth {
     width: 100% !important;
 }
 
 .aboutDetails p {
     line-height: 33px;
     font-size: 1rem;
     width: 100%;
 }
 
 .projects .aboutDetails {
     margin-bottom: 3rem;
 }
 
 .aboutDetails {
     width: 50%;
     margin-bottom: 1rem;
 }
 
 .storyDetails {
     width: 90%;
 }
 
 .storyDetails p {
     width: 100%;
 }
 
 .aboutDetailsCard {
     margin: 0rem 0rem;
 }
 
 .aboutDetailsCard p {
     color: var(--darkText);
     font-size: 1rem;
     line-height: 25px;
     font-weight: 100;
 }
 
 .aboutDetails p {
     color: var(--darkText);
 }
 
 .aboutBorder {
     border-radius: 25px;
     border-top-color: var(--light-gray);
     border-top-style: solid;
     width: 80px;
     border-top-width: 6px;
 }
 
 .aboutTitle h2 {
     padding-bottom: 0;
     margin: 0rem 1rem;
     font-size: 1rem;
     color: var(--darkText);
     font-weight: 100;
 }
 
 .aboutTitle {
     margin-bottom: 1rem;
 }
 
 .aboutTitle img {
     width: 25px;
 }
 
 .aboutImage {
     width: 304px;
     transform: scale(1);
     transition: all .3s ease;
 }
 
 .singleAboutCard:hover .aboutImage {
     transform: scale(1.03);
     transition: all .3s ease;
 }
 
 .singleAboutCard p {
     transform: translateX(0px);
     transition: all .3s ease;
     margin-bottom: 0.5rem;
 }
 
 .singleAboutCard:hover p {
     transform: translateX(-5px);
     transition: all .3s ease;
 }
 
 .singleAboutCard .aboutTitle {
     transform: translateX(0px);
     transition: all .3s ease;
 }
 
 .singleAboutCard:hover .aboutTitle {
     transform: translateX(-5px);
     transition: all .3s ease;
 }
 
 .singleAboutCard .aboutBorder {
     transform: translateX(0px);
     transition: all .3s ease;
 }
 
 .singleAboutCard:hover .aboutBorder {
     transform: translateX(-5px);
     transition: all .3s ease;
     border-top-color: var(--main);
 }
 
 .singleAboutCard {
     transition: all .3s ease;
 }
 
 .singleAboutCard:hover {
     border-color: var(--secondary);
     transition: all .3s ease;
 }
 
 .aboutImage img {
     object-fit: contain;
     border-radius: 23px;
 }
 
 .countCard {
     width: 11rem;
     height: 10rem;
 }
 
 .countCard h2,
 .countCard p {
     color: var(--main);
 }
 
 .countCard h2 {
     text-shadow: 10px -14px var(--light-gray);
 }
 
 .wholeCards {
     padding-top: 3rem;
 }
 
 .hiveHover a {
     color: var(--main);
     font-size: 1rem;
     font-weight: 800;
     margin-right: .5rem;
     text-decoration: none;
 }
 
 .hiveHover img {
     width: 15px;
 }
 
 .noDivHive {
     margin-top: 3rem !important;
 }
 
 .noDivHive>img {
     position: relative;
     right: 59px;
     transition: all .3s ease;
     width: 29px;
 }
 
 .noDivHive:hover>img {
     position: relative;
     right: 0px;
     transition: all .3s ease;
 }
 
 .hiveHover {
     transform: translateX(30px);
     opacity: 0;
     transition: all .3s ease;
 }
 
 .en .hiveHover {
     transform: translateX(-30px);
     opacity: 0;
     transition: all .3s ease;
 }
 
 .hiveHoverIcon:hover .hiveHover {
     transform: translateX(0px);
     opacity: 1;
     transition: all .3s ease;
 }
 
 .en .hiveHoverIcon:hover .hiveHover {
     transform: translateX(0px);
     opacity: 1;
     transition: all .3s ease;
 }
 
 .hiveHoverIcon {
     cursor: pointer;
 }
 
 .hiveHoverIcon img {
     width: 20px !important;
 }
 
 .blogMoreArrow>img {
     width: 10px !important;
 }
 
 .blogMoreHive {
     margin: 0rem 1rem;
     margin-right: 1.9rem;
 }
 
 .hiveHover img {
     width: 10px !important;
 }
 
 .blogMoreArrow {
     transform: translateX(30px);
     opacity: 0;
     transition: all .3s ease;
 }
 
 .blogMoreHive:hover .blogMoreArrow {
     transform: translateX(0px);
     opacity: 1;
     transition: all .3s ease;
 }
 
 .blogMoreHive>img {
     width: 20px !important;
 }
 
 .blogMoreArrow a {
     color: var(--main) !important;
     font-size: 1rem;
     font-weight: 800;
     margin-right: .5rem;
     text-decoration: none;
 }
 
 .serviceCard:hover .hiveHover {
     transform: translateX(0px);
     opacity: 1;
     transition: all .3s ease;
 }
 
 .serviceCard .hiveHover {
     transform: translateX(30px);
     opacity: 0;
     transition: all .3s ease;
 }
 
 .en .serviceCard:hover .hiveHover {
     transform: translateX(0px);
     opacity: 1;
     transition: all .3s ease;
 }
 
 .en .serviceCard .hiveHover {
     transform: translateX(-30px);
     opacity: 0;
     transition: all .3s ease;
 }
 
 .login {
     margin: 100px;
     background-color: white;
     padding: 40px;
     border-radius: 25px;
 }
 
 .login h2 {
     color: var(--body);
 }
 
 .login {
     background-color: var(--main);
 }
 
 .form form input[type="text"],
 .form form input[type="password"],
 .form form textarea,
 .form form select {
     width: 100%;
     box-sizing: border-box;
     margin: 15px 0px;
     padding: 12px 15px;
     border-radius: 25px;
     border-style: none;
 }
 
 .form form button {
     margin: 15px 0px;
     padding: 1rem;
     font-size: 18px;
     width: 100%;
     background-color: var(--secondary);
     color: var(--main);
     font-weight: bold;
     border: none;
     cursor: pointer;
     border-radius: 25px;
 }
 
 .loginBody {
     background-color: var(--body);
     height: 100vh;
 }
 
 #about .services {
     background-image: unset;
 }
 
 #servicesPage,
 .headingSection,
 #projectPage,
 #blogsPage {
     overflow: hidden;
 }
 
 .servicesListItem {
     margin-bottom: 0.5rem;
     line-height: 25px;
 }
 
 .services {
     padding-top: 0rem;
     background-image: url(../images/bg.svg);
     background-repeat: no-repeat;
     background-position: top right !important;
 }
 
 .servicesCards {
     padding: 0 !important;
 }
 
 .singleServiceCard {
     padding: 1rem;
 }
 
 .serviceCard>img:first-of-type {
     transform: scale(1);
     transition: all .3s ease;
 }
 
 .serviceCard:hover>img:first-of-type {
     transform: scale(1.1);
     transition: all .3s ease;
 }
 
 .serviceCard h2 {
     margin: 1rem 0rem;
     margin-bottom: 1rem;
     font-size: 1rem;
     font-weight: 100;
     color: var(--main);
     padding: 0;
 }
 
 .serviceCard ul {
     margin: 1rem 1rem;
     color: var(--darkText);
     font-size: 1rem;
     font-weight: 100;
     margin-bottom: 1rem;
     transition: all .3s ease;
 }
 
 .serviceCard ul,
 .serviceCard h2 {
     transform: translateX(5px);
     transition: all .3s ease;
 }
 
 .serviceCard:hover ul,
 .serviceCard:hover h2 {
     transform: translateX(0px);
     transition: all .3s ease;
 }
 
 .responsiveCarousel {
     display: none !important;
 }
 
 .notResponsiveCarousel {
     display: flex !important;
 }
 
 .blogsCarousel .owl-stage {
     display: flex;
     justify-content: center;
     align-items: center;
 }
 
 .singleSlide {
     justify-content: space-evenly;
 }
 
 .clientImages {
     width: 150px !important;
     height: 100px !important;
 }
 
 .clientImages img {
     width: 100% !important;
     height: 100% !important;
     transition: all .3s ease;
     transform: scale(1);
     opacity: 1;
     object-fit: contain;
 }
 
 .clientImages img:hover {
     width: 100% !important;
     height: 100% !important;
     transition: all .3s ease;
     transform: scale(1.1);
     opacity: 0.5;
     object-fit: contain;
 }
 
 .desktopCarousel {
     display: block !important;
 }
 
 .mobileCarousel {
     display: none !important;
 }
 
 .owl-carousel#one .nav-btn {
     top: -4px !important;
     top: -4px !important;
     background-color: #f9fafa;
 }
 
 .owl-carousel {
     margin-top: 3rem
 }
 
 .owl-carousel .item {
     padding: 1rem;
 }
 
 .mobileCarouselImage img {}
 
 .flex-container {
     display: flex;
     flex-wrap: nowrap;
     justify-content: space-evenly;
     align-items: center;
     margin-top: 2rem;
 }
 
 .teamContainer>div {
     width: 206px !important;
 }
 
 .teamNewSocial {
     margin-top: 0.5rem;
 }
 
 .teamNewSocial img {
     width: 30px !important;
     margin-right: .5rem;
     margin-left: .5rem;
 }
 
 .teamNew h3 {
     width: 100%;
     font-size: 1.3rem;
     color: var(--darkText);
     padding: 0;
     font-weight: 100;
     line-height: 34px;
     margin-top: 1rem;
 }
 
 .teamNew p {
     width: 100%;
     font-size: large;
     font-weight: 100;
     line-height: 34px;
     font-size: .82rem;
 }
 
 .singleDetail {
     background-color: var(--secondary);
     border-radius: 25px;
 }
 
 .teamMember img {
     transform: scale(.8);
     transition: all .3s ease;
 }
 
 .teamMember:hover img {
     transform: scale(.7);
     transition: all .3s ease;
 }
 
 .teamMember:hover .teamDetails div:nth-child(1) {
     left: 6rem;
     transition: all .3s ease;
     background-color: var(--secondary);
     color: var(--main)
 }
 
 .teamMember:hover .teamDetails div:nth-child(2) {
     right: 5rem;
     transition: all .3s ease;
     background-color: var(--secondary);
     color: var(--main)
 }
 
 .teamMember:hover .teamDetails div:nth-child(3) {
     left: -4rem;
     transition: all .3s ease;
     background-color: var(--secondary);
     color: var(--main)
 }
 
 .teamMember .teamDetails div:nth-child(1) {
     left: 0rem;
     transition: all .3s ease;
     background-color: var(--white);
     color: var(--white);
 }
 
 .teamMember .teamDetails div:nth-child(2) {
     right: 2rem;
     transition: all .3s ease;
     background-color: var(--white);
     color: var(--white);
 }
 
 .teamMember .teamDetails div:nth-child(3) {
     left: 2rem;
     transition: all .3s ease;
     background-color: var(--white);
     color: var(--white);
 }
 
 .teamDetails {
     position: absolute;
 }
 
 .teamDetails div p {
     font-size: .8rem !important;
 }
 
 .singleDetail img {
     width: 20px !important;
 }
 
 .teamMember .singleDetail img {
     filter: brightness(0) invert(1);
     transition: all .3s ease;
 }
 
 .teamMember:hover .singleDetail img {
     filter: brightness(1) invert(0);
     transition: all .3s ease;
     width: 15px !important;
     cursor: pointer;
 }
 
 .singleDetail {
     z-index: 0;
     width: 11rem;
     height: 42px;
     padding: 0rem 1rem;
 }
 
 .singleDetail p {
     margin-right: 0.9rem;
     font-size: 1.3rem !important;
 }
 
 .socialTeam {
     transform: translateX(28px);
     opacity: 0;
     transition: all .3s ease;
 }
 
 .userImageBlog:hover .socialTeam {
     transform: translateX(0px);
     opacity: 1;
     transition: all .3s ease;
 }
 
 .socialTeam img:nth-child(1) {
     margin-right: 0.5rem;
 }
 
 .socialTeamBlog img:nth-child(1) {
     margin-right: 0.5rem;
 }
 
 .socialTeam img {
     width: 18px !important;
 }
 
 .flex-container>div {
     width: 100px;
     margin: 10px;
     text-align: center;
     line-height: 75px;
     font-size: 30px;
 }
 
 .navigationHivesLeft {
     position: absolute;
     left: 0;
 }
 
 .navigationHivesRight {
     position: absolute;
     right: 0;
 }
 
 .owl-carousel .nav-btn {
     position: absolute;
     width: 20px !important;
     cursor: pointer;
     top: 172px !important;
 }
 
 #mobileCarousel .nav-btn {
     top: 50px !important;
 }
 
 .owl-carousel .owl-prev.disabled,
 .owl-carousel .owl-next.disabled {
     pointer-events: none;
     opacity: 0.2;
 }
 
 .owl-carousel .prev-slide {
     left: 0px;
 }
 
 .owl-carousel .next-slide {
     right: 0px;
 }
 
 .owl-carousel .prev-slide:hover {
     background-position: 0px -53px;
 }
 
 .owl-carousel .next-slide:hover {
     background-position: -24px -53px;
 }
 
 .navigationHivesRight,
 .prev-slide {
     transition: content-image 0.5s fade-in-out;
 }
 
 .navigationHivesRight:hover {
     content: url("../images/hoverNavNext.svg");
     width: 30px !important;
 }
 
 .prev-slide:hover {
     content: url("../images/hoverNavPrev.svg");
     width: 30px !important;
 }
 
 .projects {
     padding-top: 5rem;
     padding-bottom: 7rem;
     background-image: url(../images/bg.svg);
     background-repeat: no-repeat;
     background-position: bottom center;
 }
 
 .flickity-button {
     background: transparent;
 }
 
 .flickity-button:hover {
     background: transparent;
     color: black;
 }
 
 .flickity-prev-next-button {
     width: 100px;
     height: 100px;
 }
 
 .flickity-button-icon {
     fill: white;
 }
 
 .flickity-button:disabled {
     display: none;
 }
 
 .carousel {
     margin: auto;
     height: 100%;
     border-radius: 20%;
     padding: 0px 2rem;
 }
 
 .flickity-viewport {}
 
 .carousel-cell {
     margin-top: 35px;
     margin-right: 35px;
     margin-bottom: 35px;
     float: right;
     max-width: 350px;
     width: 100%;
     border-radius: 25px;
     counter-increment: carousel-cell;
     background: var(--white);
     overflow: hidden;
 }
 
 .carousel-cell.is-selected {
     opacity: 1;
     background: white;
     transform: scale(1.1);
     border: var(--main) 1px solid;
 }
 
 .wholeProjectDetailsSelected {
     display: none;
 }
 
 .wholeProjectDetails {
     position: absolute;
     top: 187px;
     transform: translateY(0px);
 }
 
 .wholeProjectDetails .projectTitle,
 .wholeProjectDetails .companyLogo img {
     filter: brightness(0) invert(1);
 }
 
 .carousel-cell.is-selected:hover .wholeProjectDetailsSelected {
     display: block;
     transition: all .3s ease;
 }
 
 .carousel-cell.is-selected:hover .wholeProjectDetails {
     transform: translateY(-1000px);
     transition: all .3s ease;
 }
 
 .carousel-cell .wholeProjectDetails {
     display: block;
     transition: all .3s ease;
 }
 
 .carousel-cell .wholeProjectDetailsSelected {
     display: none;
     transition: all .3s ease;
 }
 
 .wholeProjectDetails {
     position: absolute;
     z-index: 100%;
     transition: all .3s ease;
     width: 92%;
 }
 
 .carousel-cell .n {
     font-size: 18px;
     margin-top: 15px;
     text-align: center;
     color: black;
     counter-increment: carousel-cell;
 }
 
 .carousel-cell .b {
     cursor: pointer;
     margin: auto;
     width: 180px;
     padding: 1px;
     background: green;
     border: 1px solid green;
     border-radius: 25px;
     font-size: 15px;
     color: white;
     text-align: center;
     counter-increment: carousel-cell;
     transition: all .3s ease;
 }
 
 .projectBackground {
     margin: 0 auto;
     width: 100%;
 }
 
 .projectBackground img {
     width: 70%;
 }
 
 .logoBorder {
     border-bottom-style: solid;
     border-bottom-width: 1px;
     border-bottom-color: var(--white);
     border-radius: 50px;
 }
 
 .carousel-cell.is-selected:hover .p {
     border-radius: 25px;
     width: 100%;
     height: 251px;
     counter-increment: carousel-cell;
     object-fit: cover;
     transition: all .3s ease;
 }
 
 .carousel-cell.is-selected:hover .projectImage::before {
     content: "";
     height: 251px;
     background-color: unset;
     opacity: .6;
     position: absolute;
     top: 0;
     left: 0;
     bottom: 0;
     right: 0;
     border-radius: 25px;
     margin: 1rem;
     transition: all .3s ease;
 }
 
 .carousel-cell.is-selected .projectImage::before {
     content: "";
     height: 93.5%;
     background-color: var(--text);
     opacity: .6;
     position: absolute;
     top: 0;
     left: 0;
     bottom: 0;
     right: 0;
     border-radius: 25px;
     margin: 1rem;
     transition: all .3s ease;
 }
 
 .projectImage::before {
     content: "";
     height: 93%;
     background-color: var(--main);
     opacity: .6;
     position: absolute;
     top: 0;
     left: 0;
     bottom: 0;
     right: 0;
     border-radius: 25px;
     margin: 1rem;
     transition: all .3s ease;
 }
 
 .projectImage {
     border-radius: 25px;
     width: 100%;
     height: 100%;
     transition: all .3s ease;
 }
 
 .carousel-cell.is-selected:hover .projectImage {
     border-radius: 25px;
     width: 100%;
     height: 230px;
     transition: all .3s ease;
 }
 
 .carousel-cell .p {
     border-radius: 25px;
     width: 100%;
     height: 481px;
     counter-increment: carousel-cell;
     object-fit: cover;
     transition: all .3s ease;
 }
 
 .linkImage img {
     margin-right: 0.5rem;
 }
 
 .projectDesc {
     color: var(--text);
     font-weight: 100;
     font-size: 1rem;
     line-height: 25px;
     padding-top: 0rem !important;
     margin-bottom: 0.5rem;
 }
 
 .projectTitle {
     color: var(--main);
     font-weight: 100;
     font-size: 1.1rem;
     font-weight: bold;
 }
 
 #team {
     background-color: var(--body);
     overflow: hidden;
     padding-top: 5rem;
     padding-bottom: 7rem;
     background-image: url(../images/bg.svg);
     background-repeat: no-repeat;
     background-position: 149%;
 }
 
 #contact {
     padding-top: 5rem;
     padding-bottom: 12rem;
     background-image: url(../images/bg.svg);
     background-repeat: no-repeat;
     background-position: bottom -123px right 50%;
     background-size: 34%;
 }
 
 #contactPage {
     padding-bottom: 0;
     padding-top: 0;
     background: linear-gradient(to left, #f9fafa 50%, #FFC629 50%);
     overflow: hidden;
 }
 
 .rightBg {}
 
 .bottomBg {}
 
 .contactDetails h2,
 .contactDetails p,
 .contactDetails a {
     text-align: center;
 }
 
 .contactDetails a {
     margin-top: 2rem;
     text-decoration: none;
     font-size: .8rem;
     background-color: var(--main);
     color: var(--white);
     padding: 1rem 2.3rem;
     border-radius: 30px;
     transform: scale(1);
     transition: all .3s ease;
 }
 
 .contactDetails a:hover {
     padding: 1rem 2.6rem;
     transform: scale(1.1);
     transition: all .3s ease;
     background-color: var(--white);
     color: var(--main);
 }
 
 .contactDetails h2 {
     font-size: 1.9rem;
     color: var(--main);
     font-weight: 100;
     width: 100% !important;
     padding: 0;
 }
 
 .map {
     width: 100%;
     margin-top: 2rem;
     height: 400px;
 }
 
 .contactDetails p {
     font-size: 1rem;
     color: var(--darkText);
 }
 
 .contactRight .loginDetails {
     padding-top: 10rem;
 }
 
 #contactRightImage {
     position: absolute;
     right: -94px;
     top: 27px;
     left: 46px;
     width: -webkit-fill-available
 }
 
 .contactLeft {
     padding-top: 15rem;
 }
 
 .contactLeft .firstImage {
     padding-bottom: 2rem;
 }
 
 .contactLeft .secondImage {
     padding-bottom: 2rem;
 }
 
 .contactLeft .border {
     padding: 3rem 1rem;
     border-bottom-style: solid;
     width: 60px;
     border-color: var(--main);
     border-width: 4px;
 }
 
 .edit-pic {
     color: transparent;
     transition: all 0.3s ease;
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
     transition: all 0.3s ease;
 }
 
 .edit-pic input {
     display: none;
 }
 
 .edit-pic img {
     position: absolute;
     object-fit: cover;
     width: 165px;
     height: 165px;
     box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
     z-index: 0;
 }
 
 .edit-pic .-label {
     cursor: pointer;
     height: 165px;
     width: 165px;
     opacity: 0;
     transition: all 0.3s ease;
 }
 
 .edit-pic:hover .-label {
     display: flex;
     justify-content: center;
     align-items: center;
     background-color: rgba(0, 0, 0, 0.8);
     z-index: 10000;
     color: #fafafa;
     transition: background-color 0.2s ease-in-out;
     margin-bottom: 0;
     opacity: 1;
 }
 
 .edit-pic span {
     display: inline-flex;
     padding: 0.2em;
     height: 2em;
 }
 
 .flickity-prev-next-button {
     background-image: url(../images/nav.svg) !important;
     background-color: var(--body) !important;
     background-repeat: no-repeat !important;
     background-position: center !important;
     background-size: 20px !important;
     transition: background-image 0.5s fade-in-out;
     border-radius: 10px !important;
 }
 
 .flickity-prev-next-button.previous:hover {
     background-image: url(../images/hoverNavPrev.svg) !important;
     background-size: 30px !important;
 }
 
 .flickity-prev-next-button.next:hover {
     background-image: url(../images/hoverNavNext.svg) !important;
     background-size: 30px !important;
 }
 
 #blogHomeSlider {
     background-color: var(--body);
     overflow: hidden;
     padding-top: 5rem;
     padding-bottom: 7rem;
     background-image: url(../images/bg.svg);
     background-repeat: no-repeat;
     background-position: bottom center;
 }
 
 .blogDetails {
     padding-top: 0rem;
 }
 
 .blog-slider {
     margin-top: 3rem;
     width: 95%;
     position: relative;
     max-width: 800px;
     margin: auto;
     margin-left: auto;
     margin-right: auto;
     background: var(--main);
     padding: 25px;
     border-radius: 25px;
     height: 400px;
     transition: all 0.3s;
 }
 
 @media screen and (max-width: 992px) {
     .leftAboutSection,
     .rightAboutSection {
         width: 100% !important;
     }
     .leftAboutSection {
         margin-top: 2rem;
     }
     .blog-slider {
         max-width: 680px;
         height: 494px;
     }
     .mobileCarousel {
         display: block !important;
     }
     .desktopCarousel {
         display: none !important;
     }
 }
 
 @media screen and (max-width: 806px) {
     .blog-slider {
         min-height: 500px;
         height: auto;
         margin: 180px 0px auto;
     }
 }
 
 @media screen and (max-height: 500px) and (min-width: 992px) {
     .blog-slider {
         height: 350px;
     }
 }
 
 .blog-slider__item {
     display: flex;
     align-items: center;
 }
 
 @media screen and (max-width: 806px) {
     .blog-slider__item {
         flex-direction: column;
     }
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__img img:nth-child(1) {
     opacity: 1;
     transition-delay: 0.3s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>* {
     opacity: 1;
     transform: none;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(1) {
     transition-delay: 0.3s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(2) {
     transition-delay: 0.4s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(3) {
     transition-delay: 0.5s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(4) {
     transition-delay: 0.6s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(5) {
     transition-delay: 0.7s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(6) {
     transition-delay: 0.8s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(7) {
     transition-delay: 0.9s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(8) {
     transition-delay: 1s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(9) {
     transition-delay: 1.1s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(10) {
     transition-delay: 1.2s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(11) {
     transition-delay: 1.3s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(12) {
     transition-delay: 1.4s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(13) {
     transition-delay: 1.5s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(14) {
     transition-delay: 1.6s;
 }
 
 .blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(15) {
     transition-delay: 1.7s;
 }
 
 .blog-slider__img {
     width: 300px;
     flex-shrink: 0;
     height: 300px;
     background-image: linear-gradient(147deg, #173D6E 0%, #173D6E 74%);
     border-radius: 20px;
     transform: translateX(-80px);
     overflow: hidden;
 }
 
 .blog-slider__img img:nth-child(1) {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     opacity: 0;
     border-radius: 20px;
     transition: all 0.3s;
     border: solid;
     border-width: 3px;
     border-color: var(--main);
 }
 
 .blog-slider__img img:nth-child(2) {
     cursor: pointer;
 }
 
 @media screen and (max-width: 806px) {
     .blog-slider__img {
         transform: translateY(-50%);
         width: 90%;
     }
 }
 
 @media screen and (max-width: 576px) {
     .blog-slider__img {
         width: 95%;
     }
 }
 
 @media screen and (max-height: 500px) and (min-width: 992px) {
     .blog-slider__img {
         height: 270px;
     }
 }
 
 .blog-slider__content {
     padding-right: 25px;
     direction: rtl;
     height: 100%;
     width: 100%;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     padding: 1rem 0rem;
 }
 
 @media screen and (max-width: 806px) {
     .blog-slider__content {
         margin-top: -80px;
         text-align: center;
         padding: 0 30px;
     }
 }
 
 @media screen and (max-width: 576px) {
     .blog-slider__content {
         padding: 0;
     }
 }
 
 .blog-slider__content>* {
     opacity: 0;
     transform: translateY(25px);
     transition: all 0.4s;
 }
 
 .blog-slider__text {
     color: var(--white);
     margin-bottom: 15px;
     line-height: 1.5em;
 }
 
 .blog-slider__text h2 {
     color: var(--secondary);
 }
 
 @media screen and (max-width: 576px) {
     .blog-slider__button {
         width: 100%;
     }
 }
 
 .blog-slider .swiper-container-horizontal>.swiper-pagination-bullets,
 .blog-slider .swiper-pagination-custom,
 .blog-slider .swiper-pagination-fraction {
     bottom: 10px;
     left: 0;
     width: 100%;
 }
 
 .blog-slider__pagination {
     position: absolute;
     z-index: 21;
     right: 20px;
     width: 11px !important;
     text-align: center;
     left: auto !important;
     top: 50%;
     bottom: auto !important;
     transform: translateY(-50%);
 }
 
 @media screen and (max-width: 806px) {
     .blog-slider__pagination {
         transform: translateX(-50%);
         left: 50% !important;
         top: 205px;
         width: 100% !important;
         display: flex;
         justify-content: center;
         align-items: center;
     }
 }
 
 .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
     margin: 8px 0;
 }
 
 @media screen and (max-width: 806px) {
     .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
         margin: 0 5px;
     }
 }
 
 .blog-slider__pagination .swiper-pagination-bullet {
     width: 11px;
     height: 11px;
     display: block;
     border-radius: 10px;
     background: #062744;
     opacity: 0.2;
     transition: all 0.3s;
 }
 
 .blog-slider__pagination .swiper-pagination-bullet-active {
     opacity: 1;
     background: #fd3838;
     height: 30px;
     box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
 }
 
 @media screen and (max-width: 806px) {
     .blog-slider__pagination .swiper-pagination-bullet-active {
         height: 11px;
         width: 30px;
     }
 }
 
 .swiper-button-prev,
 .swiper-button-next {
     background-image: none !important;
     background-repeat: no-repeat !important;
     background-position: center !important;
     background-size: 36px !important;
     width: 53px !important;
     background-color: var(--body);
     border-radius: 10px;
 }
 
 .swiper-button-next::after,
 .swiper-button-prev::after {
     content: "" !important;
 }
 
 .quotes {
     position: absolute;
     top: 0;
     top: -24px;
     width: 60px;
     left: 380px;
 }
 
 .socialTeam,
 .socialTeam img {
     margin-left: .5rem;
     margin-right: .5rem;
 }
 
 footer {
     background-color: var(--main);
     color: var(--white);
     padding-top: 3rem;
     padding-bottom: 3rem;
     font-size: .8rem !important;
 }
 
 .singleFooterService p,
 .footerLogo p {
     margin-top: 2rem;
     font-weight: 300;
 }
 
 .singleFooterService:hover p {
     color: var(--secondary);
     transition: all .3s ease;
 }
 
 .singleFooterService img {
     font-weight: 300;
     filter: unset;
     transition: all .3s ease;
 }
 
 .singleFooterService:hover img {
     color: var(--secondary);
     filter: saturate(140%) contrast(139%) brightness(1052%) invert(30%) sepia(163%) hue-rotate(15deg);
     transition: all .3s ease;
 }
 
 .singleFooterService p {
     font-weight: 300;
     transition: all .3s ease;
 }
 
 .singleFooterService {
     transition: all .3s ease;
     position: relative;
     top: 0px;
 }
 
 .singleFooterService:hover {
     position: relative;
     top: 4px;
     transition: all .3s ease;
 }
 
 .footerServices {
     gap: 40px;
     width: 74%;
     justify-content: inherit;
 }
 
 .footerListItem {
     margin-bottom: 1rem;
 }
 
 .footerListItem a {
     color: var(--white);
     transition: all .3s ease;
     text-decoration: none;
 }
 
 .footerListItem:hover a {
     transition: all .3s ease;
     color: var(--secondary) !important;
 }
 
 .footerListItem {
     margin-bottom: 1rem;
 }
 
 .noMargin {
     margin-top: 0rem;
 }
 
 .socialMediaFooter {
     align-self: center;
 }
 
 .socialMediaFooter img {
     transition: all .3s ease;
     transform: scale(1);
     margin-bottom: 1rem;
 }
 
 .socialMediaFooter img:hover {
     transition: all .3s ease;
     transform: scale(1.1);
     color: var(--secondary);
     filter: saturate(140%) contrast(139%) brightness(1052%) invert(30%) sepia(163%) hue-rotate(15deg);
 }
 
 .socialMediaFooter a:nth-child(5) img {
     margin-bottom: 0;
 }
 
 .singleContact:hover img {
     color: var(--secondary);
     filter: saturate(140%) contrast(139%) brightness(1052%) invert(30%) sepia(163%) hue-rotate(15deg);
     transition: all .3s ease;
 }
 
 .singleContact img {
     filter: unset;
     transition: all .3s ease;
 }
 
 .singleContact:hover .contactText,
 .singleContact:hover .contactText a {
     color: var(--secondary);
     transition: all .3s ease;
 }
 
 .contactText {
     margin-right: 1.2rem;
     margin-left: 1.2rem;
     transition: all .3s ease;
 }
 
 .contactText a {
     text-decoration: none;
     color: var(--white);
 }
 
 .singleContact {
     margin-bottom: 1rem;
 }
 
 .title p {
     font-size: 1.2rem;
 }
 
 .footerForm {}
 
 .footerForm input[type="text"] {
     background: transparent;
     font-weight: 100;
     border-radius: 25px;
     border-width: 2px;
     border-style: solid;
     border-color: var(--white);
     padding: .5rem 1rem;
     margin-bottom: 1rem;
     width: 241px;
     color: var(--white);
 }
 
 .footerForm input[type="text"]:focus {
     outline: var(--secondary);
     border-color: var(--secondary);
 }
 
 .footerForm input[type="text"]::-webkit-input-placeholder {}
 
 .footerForm button {
     text-decoration: none;
     background-color: var(--white);
     color: var(--main);
     padding: .5rem 1rem;
     border-radius: 30px;
     border-style: none;
     font-weight: 100;
     align-self: flex-start;
     display: flex;
 }
 
 .footerForm input[type="text"]::placeholder {
     color: var(--white);
 }
 
 .activeFooterLink {
     color: var(--secondary) !important;
 }
 
 footer .title {
     padding-top: 2rem;
     padding-bottom: 2rem;
 }
 
 .copyrights {
     background-color: var(--darkMain);
     height: 60px;
     color: var(--white);
 }
 
 .copyrights small {
     font-size: .6rem;
     line-height: 15px;
 }
 
 .headingSection {
     background-image: url(../images/aboutHeading.svg);
     background-repeat: no-repeat;
     background-position: center;
     background-size: cover;
     height: 268px;
 }
 
 .headingSection .heading p:nth-child(1) {
     font-size: 2.2rem;
     color: var(--secondary);
     margin-bottom: 1rem;
     font-weight: 300;
 }
 
 .headingSection .heading p:nth-child(2) {
     font-size: 1rem;
     color: var(--white);
     margin-top: 0.5rem;
 }
 
 .headingSection .heading {
     margin: 0;
 }
 
 .companyLogo {
     height: 1.5rem;
     margin-top: 0.5rem;
 }
 
 .companyLogo img {
     height: 100%;
     width: 100%;
     object-fit: contain;
 }
 
 .wholeProjectDetailsSelected .companyLogo {
     width: 7rem;
     height: 3rem;
 }
 
 .wholeProjectDetailsSelected .companyLogo img {
     height: 100%;
     width: 100%;
     object-fit: contain;
 }
 
 .projectsWholeCards {
     gap: 30px;
     grid-template-columns: repeat(3, minmax(0px, 341px)) !important;
     justify-content: center;
 }
 
 #projectPage {
     margin-top: 0rem !important;
     background-color: transparent;
     padding: 0;
     z-index: 0;
     position: relative;
     padding: 0rem 1rem !important;
 }
 
 #projectsPage .owl-carousel {}
 
 #blogsPage {
     padding-bottom: 0 !important;
 }
 
 .projectHeadingSection {
     background-image: url(../images/projectsHeading.webp);
     background-repeat: no-repeat;
     background-position: center;
     background-size: auto;
     width: 100%;
     height: 268px;
 }
 
 .projectsImage {
     width: 100%;
     margin: 0 !important;
     height: 185px;
     overflow: hidden;
     border-radius: 25px;
 }
 
 .projectsImage img:nth-child(1) {
     width: 100% !important;
     object-fit: cover;
     height: 100%;
 }
 
 .projectCard {
     padding: 2rem;
 }
 
 .bottomBorder {
     border-bottom: solid 8px var(--main);
     border-radius: 50px;
     width: 120px;
 }
 
 .projectType p {
     color: var(--main);
     font-weight: 300;
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
 }
 
 .projectDesc {
     font-size: .8rem !important;
     color: var(--text) !important;
     font-weight: 100 !important;
     height: 82px;
     overflow-y: hidden;
 }
 
 .innerProjectDetails img {
     width: 100px !important;
 }
 
 .innerBlogDetails img {
     width: 50px !important;
 }
 
 .servicesHeadingSection {
     background-image: url(../images/new/services.png);
     background-repeat: no-repeat;
     background-position: center;
     background-position: center;
     background-size: cover;
     width: 100%;
     height: 388px;
 }
 
 .servicesHeadingSection img {}
 
 .twoPara {
     width: 100%;
     display: grid;
     grid-template-columns: repeat(2, minmax(0px, 400px));
     justify-content: flex-start;
     gap: 50px;
 }
 
 .servicesHeadingPara {
     font-size: 1rem !important;
 }
 
 .serviceImageContainer {
     padding: 2rem;
     background-color: var(--card-fill);
     border-style: solid;
     border-color: var(--light-gray);
     border-width: 1px;
     align-self: normal;
     border-radius: 70px;
     width: 400px;
 }
 
 .leftServiceSide {
     width: 50%;
 }
 
 .rightServiceSide {
     width: 50%;
 }
 
 .serviceImageContainer img {
     width: 100%;
 }
 
 .serviceImageContainer {
     transform: rotate(0deg);
     transition: all .3s ease
 }
 
 .serviceImageContainer:hover {
     transform: rotate(5deg);
     transition: all .3s ease;
 }
 
 .servicesTitle {
     margin-left: 1rem;
     margin-right: 1rem;
     color: var(--main);
     font-size: 1.5rem !important;
     line-height: 32px;
 }
 
 .serviceCardTitle {
     margin-bottom: 2rem;
 }
 
 .serviceCardTitle img {
     width: 30px;
 }
 
 .serviceDesc {
     color: var(--darkText);
     font-size: 1rem;
     line-height: 30px !important;
 }
 
 .singleServiceCard {
     padding-top: 0rem;
     padding-bottom: 7rem;
     background-image: url(../images/bg.svg);
     background-repeat: no-repeat;
     background-position: top right;
 }
 
 .blogsHeadingSection {
     background-image: url(../images/new/blogs.png);
     background-repeat: no-repeat;
     background-position: right;
     background-size: cover;
     width: 100%;
     height: 377px;
 }
 
 .en .blogsHeadingSection {
     background-image: url(../images/new/blogsEn.png);
     background-repeat: no-repeat;
     background-position: right;
     background-size: cover;
     width: 100%;
     height: 377px;
 }
 
 .allBlogsPara {
     margin-left: 1rem;
     color: var(--darkText);
     width: unset !important;
 }
 
 .search {
     margin-top: 2rem;
     margin-bottom: 2rem;
     background: transparent;
     border-radius: 25px;
     border-width: 2px;
     border-style: solid;
     border-color: var(--main);
     padding: .5rem 1rem;
     width: 241px;
 }
 
 .search::placeholder {
     color: var(--text) !important;
 }
 
 .vidPlay {
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     width: 50px !important;
 }
 
 .serviceDesc ul {
     list-style: none;
 }
 
 .vidPlay img {}
 
 .blogsWholeCards {
     gap: 30px;
     grid-template-columns: repeat(3, minmax(0px, 376px)) !important;
     justify-content: center;
     padding-top: 0rem;
 }
 
 .blogTitle {
     color: var(--main) !important;
     font-size: 1.5rem !important;
 }
 
 .blogCard {
     padding: 2rem 1rem;
 }
 
 .blogDetailsCard {
     margin: 0rem 1rem;
 }
 
 .blogDesc {
     font-size: .8rem !important;
 }
 
 .yellowBorder {
     border-bottom: solid 4px var(--secondary);
     border-radius: 50px;
     width: 120px;
     margin-top: 1rem;
     margin-bottom: 1rem;
 }
 
 .is-active {
     color: var(--main);
 }
 
 .video-container {
     width: 100%;
 }
 
 .successMessage {
     background-color: var(--secondary);
     color: var(--main);
     width: 100%;
     padding: .5rem 1rem;
     border-radius: 20px;
     margin-bottom: 2rem;
 }
 
 .errorMessage {
     background-color: rgb(220, 125, 88);
     color: var(--white);
     width: 100%;
     padding: .5rem 1rem;
     border-radius: 20px;
     margin-bottom: 2rem;
 }
 
 .contactHeadingSection {
     background-image: url(../images/contactHeader.webp);
     background-repeat: no-repeat;
     background-position: center;
     width: 100%;
     height: 268px;
 }
 
 .contactRight {
     width: 50%;
     background-color: var(--secondary);
     padding-top: 6rem;
     padding-right: 2em;
 }
 
 .contactLeft {
     width: 46%;
 }
 
 .loginDetails h2 {
     color: var(--main);
 }
 
 .loginDetails p {
     color: var(--darkText);
 }
 
 .contactForm input,
 select {
     margin-top: 1rem;
     margin-bottom: 1rem;
     background: transparent;
     border-radius: 25px;
     border-width: 2px;
     border-style: solid;
     border-color: var(--main);
     padding: .5rem 1rem;
     width: 100%;
     background-color: var(--body);
 }
 
 .contactForm input:focus,
 select:focus,
 textarea:focus {
     outline: var(--secondary);
     border-color: var(--darkMain);
 }
 
 select {
     width: 150px;
     -webkit-appearance: none;
     -moz-appearance: none;
     background-image: url("data:image/svg+xml;utf8,<svg fill='teal' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
     background-repeat: no-repeat;
     background-position-x: 4px;
     background-position-y: 4px;
     color: teal;
     padding-right: 1rem;
 }
 
 .dashboard-select {
     background-position-x: right;
     background-origin: content-box;
 }
 
 textarea {
     width: 100%;
     height: 300px;
     resize: vertical;
     background: var(--body);
     border-radius: 25px;
     border-width: 2px;
     border-style: solid;
     border-color: var(--main);
     padding: .5rem 1rem;
     margin-top: 1rem;
     margin-bottom: 1rem;
 }
 
 .formGroup {
     gap: 10px;
 }
 
 .singleInput small {
     color: var(--text);
 }
 
 .contactForm input[type="submit"] {
     text-decoration: none;
     background-color: var(--main);
     color: var(--white);
     padding: .5rem 2rem;
     border-radius: 30px;
     border-style: none;
     font-weight: 100;
     align-self: flex-start;
     display: flex;
     width: unset;
     cursor: pointer;
     font-family: Expo, sans-serif !important;
 }
 
 label {
     color: var(--darkText);
 }
 
 .stats {
     position: relative;
     z-index: 41;
 }
 
 .singleStat {
     margin: 0.5rem;
     padding: 1.5rem 3rem;
     border-radius: 38px;
     background-color: var(--card-fill);
     border-style: solid;
     border-color: var(--light-gray);
     border-width: 1px;
     padding-top: 3rem;
 }
 
 .notFadedStat,
 .statName {
     color: var(--main);
 }
 
 .statName {
     font-weight: 800;
 }
 
 .fadedStat {
     position: absolute;
     font-size: 3rem;
     z-index: 0;
     right: -25px;
     top: -7px;
     font-weight: 100;
     color: #e1dfdf;
 }
 
 .notFadedStat {
     font-size: 1.8rem;
     position: relative;
     z-index: 0;
     font-weight: 800;
 }
 
 .statNumber {
     margin-bottom: .7rem;
 }
 
 .firstAboutImage {
     left: 60px;
     bottom: 80px;
 }
 
 .secondAboutImage {
     right: 60px;
     top: 80px;
 }
 
 .firstAboutImage,
 .secondAboutImage {
     width: 200px;
 }
 
 .leftAboutSection,
 .rightAboutSection {
     width: 50%;
 }
 
 .rightAboutSection img {
     width: 300px;
 }
 
 .storyBorder {
     border-bottom: solid 6px var(--main);
     border-radius: 50px;
     width: 120px;
     margin-top: 1rem;
     margin-bottom: 1rem;
 }
 
 .storyName {
     font-size: 1.3rem;
     font-weight: 800;
 }
 
 .dateImageContainer {
     height: 103px;
 }
 
 .story {
     gap: 70px;
 }
 
 .storyDate {}
 
 .storyDate {
     font-size: 1.5em;
 }
 
 .cs-blog {
     margin-bottom: 30px;
 }
 
 .cs-blog h2 {
     font-size: 20px;
     letter-spacing: -1px;
     line-height: 29px;
     margin: 0 0 11px;
     position: relative;
     text-transform: uppercase;
 }
 
 .cs-blog::after {
     clear: both;
     content: "";
     display: block;
 }
 
 ul.blog-list {
     list-style: outside none none;
     margin: -30px 0 0;
     padding: 0;
     position: relative;
     width: 100%;
 }
 
 .blog-list.blog-slide {
     margin: 0;
 }
 
 .blog-list.blog-slider {
     margin: 0;
 }
 
 ul.blog-list li {
     float: left;
     list-style: outside none none;
     margin: 30px 0 0;
 }
 
 .blog-slide .slick-list {
     margin: 0 -15px;
 }
 
 ul.blog-list.blog-slide li {
     margin-bottom: 10px;
     margin-top: 0;
 }
 
 ul.blog-list li:first-child {
     border: 0 none;
 }
 
 ul.blog-list li figure {
     overflow: hidden;
     position: relative;
 }
 
 ul.blog-list li figure img {
     width: 100%;
 }
 
 ul.blog-list li .cs-text {
     border: 1px solid #f0f0f0;
     overflow: hidden;
     padding: 15px 20px;
 }
 
 .cs-blog-detail .cs-text .post-option {
     border-top: 1px solid #f0f0f0;
     float: left;
     padding-top: 10px;
     width: 100%;
 }
 
 .cs-blog-detail .cs-text .post-option span a {
     color: #777;
 }
 
 .widget ul.blog-list li .cs-text {
     height: auto;
     margin: 0;
     min-height: inherit;
     padding: 9px 0 13px;
 }
 
 ul.blog-list li .cs-text span {
     color: #8b919e;
     display: inline-block;
     font-size: 12px;
     line-height: 19px;
 }
 
 ul.blog-list li .cs-text p {
     margin-bottom: 12px;
 }
 
 ul.blog-list li .cs-text h5 {
     border-bottom: 1px solid #fff;
     font-size: 15px;
     margin: 0;
     min-height: 56px;
     padding: 0 0 5px;
 }
 
 ul.blog-list li .cs-text h5 a {
     color: #292c33;
 }
 
 ul.blog-list li .cs-text .readmore {
     float: right;
     font-size: 11px;
     line-height: 20px;
     padding-top: 6px;
     position: relative;
     text-transform: uppercase;
 }
 
 ul.blog-list .slick-list.draggable {
     overflow: hidden;
 }
 
 .cs-auther-name a {
     color: #999;
 }
 
 .blog-list .slick-arrow {
     background-color: #f9f9f9;
     float: left;
     height: 29px;
     margin: 5px 0 0 5px;
     text-align: center;
     width: 29px;
 }
 
 .blog-list .slick-arrow a {
     color: #999;
     font-size: 18px;
     line-height: 32px;
 }
 
 .cs-blog.classic {
     margin: 0 0 30px;
 }
 
 .cs-blog.classic ul {
     margin: 0;
 }
 
 .cs-blog.classic li {
     border-top: 2px solid #eceef0;
     float: left;
     list-style: outside none none;
     padding: 16px 0;
     width: 100%;
 }
 
 .cs-blog.classic p {
     display: inline-block;
     font-size: 16px;
     font-weight: 500;
     margin: 0 -4px 0 0;
     vertical-align: middle;
     width: 100%;
 }
 
 .cs-blog.classic p i {
     color: #c4c6c8;
     margin: 0 10px 0 0;
     vertical-align: middle;
 }
 
 .cs-blog.classic span {
     display: inline-block;
     float: right;
     font-size: 12px;
     text-align: right;
     vertical-align: middle;
 }
 
 .cs-blog.classic span i {
     color: #e2e5e8;
     float: right;
     font-size: 24px;
     margin: 2px 0 0 10px;
 }
 
 .cs-pagination-blog {
     margin-bottom: 30px;
 }
 
 .cs-blog.blog-medium {
     border-bottom: 0 none;
     margin: 0;
     padding-bottom: 30px;
 }
 
 .cs-blog.blog-medium::after {
     clear: both;
     content: "";
     display: block;
 }
 
 .cs-blog.blog-medium .blog-text .cs-post-title {
     clear: both;
 }
 
 .cs-blog .cs-media figure {
     position: relative;
 }
 
 .cs-blog .cs-media figure figcaption {
     background-color: rgba(0, 0, 0, 0.5);
     height: 100%;
     left: 0;
     opacity: 0;
     position: absolute;
     top: 0;
     transition: all 0.3s ease-in-out 0s;
     visibility: hidden;
     width: 100%;
 }
 
 .cs-blog .cs-media:hover figure figcaption {
     opacity: 1;
     visibility: visible;
 }
 
 .cs-blog.blog-medium .post-title h3 {
     margin-bottom: 0;
 }
 
 .cs-blog .post-title {
     margin-bottom: 10px;
 }
 
 .cs-blog.blog-medium .cs-media figure figcaption .cs-readmore a {
     color: #fff;
     font-size: 24px;
     left: 50%;
     margin: -10px 0 0 -65px;
     position: absolute;
     top: 50%;
     transform: scale(0.7);
 }
 
 .cs-blog.blog-medium .cs-media:hover figure figcaption .cs-readmore a {
     transform: scale(1);
 }
 
 .cs-blog.blog-medium:last-child {
     border-bottom: medium none;
     padding-bottom: 40px;
 }
 
 .blog-medium .cs-media {
     display: inline-block;
     margin-right: 30px;
     vertical-align: middle;
     width: 37%;
 }
 
 .blog-modern .cs-media {
     display: inline-block;
     margin-right: -4px;
     vertical-align: middle;
     width: 48.6%;
 }
 
 .blog-medium .cs-media figure img,
 .blog-modern .cs-media img {
     width: 100%;
 }
 
 .blog-medium .cs-media~.blog-text {
     display: inline-block;
     float: none;
     margin-right: 0;
     vertical-align: middle;
     width: 58%;
 }
 
 .blog-modern .blog-text {
     display: inline-block;
     margin-right: -4px;
     padding-left: 30px;
     vertical-align: middle;
     width: 51.4%;
 }
 
 .blog-modern .blog-text .cs-post-title {
     margin-bottom: 5px;
     padding-bottom: 1px;
     position: relative;
 }
 
 .blog-modern .blog-text .cs-post-title::after {
     bottom: 1px;
     content: "";
     height: 1px;
     left: 0;
     position: absolute;
     width: 27px;
 }
 
 .blog-modern .blog-text .blog-separator {
     margin: 0 0 10px;
 }
 
 .blog-modern .blog-text .blog-separator::before {
     display: none;
 }
 
 .blog-medium .blog-text {
     width: 99.1%;
 }
 
 .blog-medium .blog-text p {
     display: inline;
     margin: 0 0 15px;
 }
 
 .blog-medium .blog-separator {
     margin: 0 0 10px;
 }
 
 .cs-blog .cs-categories,
 .cs-blog-detail .cs-categories {
     display: block;
     margin: 0 0 12px;
 }
 
 .cs-blog .cs-categories a,
 .cs-blog-detail .cs-categories a {
     border-bottom: 2px solid #ededed;
     color: #55a747;
     display: inline-block;
     font-size: 10px;
     margin-right: 5px;
     padding-bottom: 2px;
     text-transform: uppercase;
 }
 
 .cs-blog-detail .post-option {
     float: right;
 }
 
 .cs-blog .post-option span a,
 .cs-blog-detail .post-option span a {
     color: #999 !important;
     display: inline-block;
     font-size: 12px;
     margin-right: 18px;
     vertical-align: middle;
 }
 
 .cs-blog .post-option span i,
 .cs-blog-detail .post-option span i {
     display: inline-block;
     font-size: 14px;
     margin-right: 10px;
     vertical-align: middle;
 }
 
 .cs-blog-detail .post-option span.post-category i {
     margin: 0;
 }
 
 .cs-blog-detail .post-option .post-category a {
     margin-left: 10px;
     margin-right: 0;
 }
 
 .cs-blog-detail .post-option .post-date {
     margin-left: 18px;
 }
 
 .cs-blog-detail .cs-text .post-option span i {
     float: left;
     margin: 3px 8px 0 0;
 }
 
 .cs-blog.blog-grid figure img {
     width: 100%;
 }
 
 .cs-blog.blog-grid .cs-media~.blog-text {
     margin: -30px 0 0;
     padding: 0 10px;
     position: relative;
     z-index: 1;
 }
 
 .cs-blog.blog-grid .cs-inner-bolg {
     background-color: #fff;
     display: inline-block;
     padding: 20px 25px;
     width: 100%;
 }
 
 .cs-blog.blog-grid .blog-text p {
     margin: 0 0 5px;
 }
 
 .cs-blog.blog-grid .post-option {
     line-height: normal;
     margin: 0 0 10px;
 }
 
 .cs-blog.blog-grid .post-option span {
     color: #8b919e;
     font-size: 10px;
     margin: 0 15px 0 0;
     position: relative;
     text-transform: uppercase;
 }
 
 .cs-blog.blog-grid .post-option span::before {
     background-color: #8b919e;
     border-radius: 100%;
     content: "";
     height: 3px;
     left: -10px;
     position: absolute;
     top: 5px;
     width: 3px;
 }
 
 .cs-blog.blog-grid .post-option span:last-child {
     margin: 0;
 }
 
 .cs-blog.blog-grid .post-option span:first-child::before {
     display: none;
 }
 
 .cs-blog.blog-grid .read-more {
     display: inline-block;
     font-size: 12px;
     position: relative;
 }
 
 .cs-blog.blog-grid .read-more::before {
     content: "";
     font-family: "icomoon";
     font-size: 14px;
     position: absolute;
     right: -15px;
     top: 0;
 }
 
 .blog-large .cs-media img {
     width: 100%;
 }
 
 .blog-large .cs-text {
     margin: 0 0 20px;
     position: relative;
     z-index: 1;
 }
 
 .blog-large .cs-media~.cs-text {
     background-color: #fff;
     margin: 0 auto;
     padding: 30px 0 0;
     width: 100%;
 }
 
 .cs-blog .cs-author,
 .cs-blog-detail .cs-author {
     float: left;
     margin: 0 0 10px;
 }
 
 .cs-blog .cs-author figure,
 .cs-blog-detail .cs-author figure {
     display: inline-block;
     height: 32px;
     margin: 0 10px 0 0;
     vertical-align: middle;
     width: 32px;
 }
 
 .cs-blog .cs-author figure img,
 .cs-blog-detail .cs-author figure img {
     border-radius: 100%;
 }
 
 .cs-blog .cs-author .cs-text,
 .cs-blog-detail .cs-author .cs-text {
     display: inline-block;
     margin: 0;
     padding: 0;
     vertical-align: middle;
 }
 
 .cs-blog .cs-author .cs-text a,
 .cs-blog-detail .cs-author .cs-text a {
     color: #555;
     font-size: 13px;
 }
 
 .blog-large .post-option,
 .cs-blog.blog-medium .post-option {
     float: right;
 }
 
 .cs-blog.blog-large .post-option span i,
 .cs-blog.blog-medium .post-option span i {
     color: #cfcfcf;
 }
 
 .post-option span i {
     margin-right: 5px;
     transition: all 0.3s ease-in-out 0s;
 }
 
 .blog-separator {
     border-bottom: 1px solid #f1f1f1;
     display: inline-block;
     margin: 20px 0 25px;
     position: relative;
     width: 100%;
 }
 
 .blog-large .cs-text p {
     margin: 0 0 25px;
 }
 
 .blog-large .read-more {
     border: 1px solid;
     border-radius: 20px;
     display: inline-block;
     font-size: 12px;
     padding: 4px 20px;
     text-transform: uppercase;
 }
 
 .blog-large .cs-post-title {
     margin: 0 0 15px;
 }
 
 .blog-large .cs-post-title h3 {
     margin: 0;
 }
 
 .cs-blog-detail .cs-post-title h1 {
     margin: 0 0 10px;
 }
 
 .cs-blog-detail .cs-post-title::after {
     clear: both;
     content: "";
     display: block;
 }
 
 .cs-blog-detail .cs-main-post img {
     width: 100%;
 }
 
 .cs-blog-detail .cs-main-post {
     margin-bottom: 25px;
 }
 
 .cs-blog-detail .cs-admin-post .cs-media figure,
 .cs-blog-detail .cs-admin-post .cs-media figure img {
     border-radius: 100%;
 }
 
 .cs-blog-detail .cs-admin-post .cs-text {
     overflow: hidden;
 }
 
 .cs-blog-detail .cs-admin-post {
     float: left;
     width: 40%;
 }
 
 .cs-blog-detail .cs-admin-post .cs-media {
     float: left;
     height: 46px;
     margin-right: 14px;
     width: 46px;
 }
 
 .cs-blog-detail .cs-author-name {
     color: #ccc;
     display: inline-block;
     font-size: 14px;
     margin-right: 20px;
     padding-top: 6px;
     vertical-align: middle;
 }
 
 .cs-blog-detail .cs-author-name strong {
     color: #55a747;
     display: block;
     line-height: 26px;
 }
 
 .cs-blog-detail .cs-more-post {
     border: 1px solid #e4e4e4;
     border-radius: 3px;
     color: #ccc;
     font-size: 11px;
     padding: 6px 8px;
 }
 
 .cs-blog-detail .cs-social-share {
     float: right;
 }
 
 .cs-blog-detail .cs-social-media {
     display: inline-block;
     margin: 0;
     padding: 0;
 }
 
 .cs-blog-detail .cs-social-media li {
     display: inline-block;
     list-style: outside none none;
     margin: 0;
     vertical-align: top;
 }
 
 .cs-blog-detail .cs-social-media li a {
     background-color: #fc6d4c;
     border-radius: 50%;
     color: #fff;
     display: block;
     font-size: 13px;
     height: 28px;
     line-height: 30px;
     margin: 0 5px 5px 0;
     text-align: center;
     width: 28px;
 }
 
 .cs-blog-detail .cs-social-media li a.cs-more {
     line-height: 33px;
     padding: 0;
 }
 
 .cs-blog-detail .cs-social-media li a::before {
     display: none;
 }
 
 .cs-blog-detail .cs-social-media li a[data-original-title="facebook"] {
     background-color: #2b4a8b;
 }
 
 .cs-blog-detail .cs-social-media li a[data-original-title="Facebook"] {
     background-color: #2b4a8b;
 }
 
 .cs-blog-detail .cs-social-media li a[data-original-title="Tumblr"] {
     background-color: #32506d;
 }
 
 .cs-blog-detail .cs-social-media li a[data-original-title="tumblr"] {
     background-color: #32506d;
 }
 
 .cs-blog-detail .cs-social-media li a[data-original-title="Dribbble"] {
     background-color: #ea4c89;
 }
 
 .cs-blog-detail .cs-social-media li a[data-original-title="dribbble"] {
     background-color: #ea4c89;
 }
 
 .cs-blog-detail .cs-social-media li a[data-original-title="stumbleupon"] {
     background-color: #eb4823;
 }
 
 .cs-blog-detail .cs-social-media li a[data-original-title="Stumbleupon"] {
     background-color: #eb4823;
 }
 
 .cs-blog-detail .cs-social-media li a[data-original-title="rss"] {
     background-color: #f06c19;
 }
 
 .cs-blog-detail .cs-social-media li a[data-original-title="twitter"] {
     background-color: #1f94d9;
 }
 
 .cs-blog-detail .cs-social-media li a[data-original-title="linkedin"] {
     background-color: #10598c;
 }
 
 .cs-blog-detail .cs-social-media li a[data-original-title="google"] {
     background-color: #d83936;
 }
 
 .cs-blog-detail .cs-social-media li a[data-original-title="youtube"] {
     background-color: #b00;
 }
 
 .cs-blog-detail .cs-social-media li a[data-original-title="Youtube"] {
     background-color: #b00;
 }
 
 .cs-blog-detail .cs-social-media li a.cs-more .at4-icon {
     border-radius: 10px;
     margin: 5px 0 0 -2px;
 }
 
 .cs-blog-detail .cs-share {
     float: none;
     left: 0;
     margin: 0 15px 0 0;
     position: absolute;
     top: 0;
 }
 
 .cs-blog-detail .cs-share a {
     color: #333;
     font-size: 18px;
     font-weight: 700;
 }
 
 .cs-blog-detail .cs-share-detail::after {
     clear: both;
     content: "";
     display: block;
 }
 
 .cs-blog-detail .cs-share-detail {
     display: inline-block;
     margin-bottom: 0;
     padding-bottom: 0;
     position: relative;
     vertical-align: middle;
     width: 49%;
 }
 
 .cs-blog-detail .cs-post-option-panel {
     float: left;
     padding-top: 20px;
     width: 100%;
 }
 
 .cs-blog-detail .rich-editor-text p {
     margin-bottom: 30px;
 }
 
 blockquote,
 .rich-text-editor blockquote {
     border-left: 4px solid;
     margin: 0 0 40px;
     padding: 20px 0 0;
     position: relative;
     width: 95%;
 }
 
 blockquote {
     background-color: #fcfcfc;
     font-style: italic;
     padding: 15px 40px 20px 50px !important;
 }
 
 blockquote,
 blockquote span,
 blockquote p {
     color: #777;
     display: block;
     font-size: 16px;
     line-height: 24px;
     margin-bottom: 15px;
 }
 
 blockquote .author-name a {
     color: #999;
     font-size: 11px;
 }
 
 blockquote.text-left-align {
     text-align: left;
 }
 
 blockquote.text-right-align {
     text-align: right;
 }
 
 blockquote.text-center-align {
     text-align: center;
 }
 
 blockquote::before,
 .rich-text-editor blockquote::before {
     color: #eaeaea;
     content: "";
     font-family: "icomoon";
     font-size: 22px;
     font-style: normal;
     left: 24px;
     position: absolute;
     top: 15px;
     transform: scale(-1);
 }
 
 .rich-text-editor blockquote {
     background-color: #fcfcfc;
     font-style: italic;
     padding: 15px 40px 20px 50px;
 }
 
 .rich-text-editor blockquote p {
     margin: 0;
 }
 
 blockquote>span {
     margin: 0;
     position: relative;
 }
 
 blockquote>span.author-name::after {
     display: none;
 }
 
 blockquote>span::after {
     color: #eaeaea;
     content: "";
     display: inline-block;
     font-family: "icomoon";
     font-size: 22px;
     font-style: normal;
     margin: 0 0 0 8px;
     position: relative;
     top: 3px;
 }
 
 .cs-blog-detail .tags {
     display: inline-block;
     margin: 0 -4px 0 0;
     vertical-align: middle;
     width: 50%;
 }
 
 .cs-blog-detail .cs-tags {
     display: block;
     margin: 0 0 40px;
 }
 
 .cs-blog-detail .cs-tags .tags span {
     color: #333;
     display: inline-block;
     font-size: 18px;
     margin: 0 10px 5px 0;
 }
 
 .cs-blog-detail .cs-tags .tags ul {
     display: inline-block;
     margin: 0;
     padding: 0;
 }
 
 .cs-tags ul li {
     display: inline-block;
     list-style: outside none none;
     margin: 0 0 6px;
 }
 
 .cs-tags ul li a {
     display: block;
     font-size: 12px;
     margin: 0 8px 0 0;
 }
 
 .cs-tags .tags ul li a {
     background-color: #f5f5f5;
     border-radius: 20px;
     color: #777;
     padding: 2px 18px 3px;
 }
 
 .comment-respond {
     margin-bottom: 30px;
 }
 
 .comment-form ul {
     list-style: outside none none;
 }
 
 .comment-form ul li {
     margin-bottom: 30px;
 }
 
 .comment-form .cs-element-title h3 {
     margin: 0;
 }
 
 .comment-form form .input-holder {
     position: relative;
 }
 
 .comment-form form .input-holder i {
     color: #cecece;
     font-size: 18px;
     position: absolute;
     right: 20px;
     top: 15px;
 }
 
 .comment-form form .input-holder input[type="text"],
 .comment-form form .input-holder textarea {
     border: 1px solid #e4e4e4;
     color: #999;
     font-size: 14px;
     height: 50px;
     margin-bottom: -1px;
     padding: 10px 20px;
     width: 100%;
 }
 
 .comment-form form .input-holder textarea {
     height: 214px;
     margin: 0 0 20px;
 }
 
 .comment-form form input[type="submit"] {
     background-color: #55a747;
     color: #fff;
     display: inline-block;
     font-size: 16px;
     padding: 10px 30px;
     text-transform: uppercase;
 }
 
 .blog-detail {
     box-shadow: none;
 }
 
 .blog-detail .blog-list {
     float: left;
     margin-bottom: 30px;
     position: relative;
     width: 100%;
 }
 
 .blog-slider-next {
     display: inline-block;
     position: absolute;
     right: 0;
     top: 10px;
 }
 
 .blog-slider-prev {
     display: inline-block;
     position: absolute;
     right: 20px;
     top: 10px;
 }
 
 .blog-detail::after,
 .author-detail::after,
 #comment ul li::after,
 .blog-detail .blog-list::after,
 .cs-packeges::after {
     clear: both;
     content: "";
     display: block;
 }
 
 .blog-title {
     margin-bottom: 25px;
 }
 
 .blog-title h3 {
     color: #282828;
     letter-spacing: -1px;
     line-height: 34px;
     margin: 0 0 10px;
 }
 
 .blog-detail .main-post {
     margin: 0 0 25px;
 }
 
 .blog-detail .main-post img {
     width: 100%;
 }
 
 .author-detail {
     border-bottom: 1px solid #f5f5f5;
     margin-bottom: 10px;
     padding-bottom: 22px;
 }
 
 .cs-admin figure {
     float: left;
     margin-right: 15px;
 }
 
 .cs-admin .cs-text {
     display: inline-block;
     overflow: hidden;
     padding-top: 8px;
 }
 
 .cs-admin .cs-text span {
     color: #ccc;
     display: block;
     font-size: 13px;
     line-height: 16px;
 }
 
 .cs-admin .cs-text strong {
     color: #282828;
     font-size: 14px;
     line-height: 18px;
 }
 
 .blog-detail h2 {
     line-height: 29px;
     margin: 0 0 11px;
     position: relative;
     width: 91%;
 }
 
 .rich-editor-text p {
     clear: both;
     line-height: 24px;
     margin-bottom: 20px;
 }
 
 .newPost {
     padding: 49px 0px;
     width: 100%;
     font-family: "Asap", sans-serif;
 }
 
 .newPost h3 {
     margin: 0px 0px 20px 0px;
     font-size: 30px;
     color: #2E3641;
 }
 
 .newPost input[type=text] {
     padding-left: 15px;
     width: 100%;
     height: 45px;
     border: 1px solid #C1CFD9;
     box-shadow: inset 0px 0px 3px #C1CFD9;
     outline: none;
     font-family: "Bree Serif", serif;
     font-size: 24px;
     color: #C1CFD9;
     margin-bottom: 20px;
 }
 
 .newPost .toolbar {
     background: #2E3641;
 }
 
 .newPost .toolbar button {
     float: left;
     width: 45px;
     height: 45px;
     background: #2E3641;
     border: none;
     border-right: 1px solid #434f5f;
     color: #C1CFD9;
     outline: none;
 }
 
 .newPost .toolbar button:hover {
     background: #394250;
     color: #b1c3cf;
 }
 
 .newPost .toolbar .customSelect {
     float: right;
     position: relative;
 }
 
 .newPost .toolbar .customSelect select {
     appearance: none;
     border-radius: 0;
     border: none;
     background: #2E3641;
     height: 45px;
     padding-left: 10px;
     padding-right: 25px;
     color: #C1CFD9;
     border-left: 1px solid #434f5f;
     outline: none;
     font-weight: bold;
     cursor: pointer;
 }
 
 .newPost .toolbar .customSelect select:hover {
     background: #394250;
     color: #b1c3cf;
 }
 
 .newPost .toolbar .customSelect:after {
     content: "";
     font-family: FontAwesome;
     color: #C1CFD9;
     position: absolute;
     right: 10px;
     top: 15px;
 }
 
 .newPost .toolbar:after {
     content: "";
     display: block;
     clear: both;
 }
 
 .newPost .editor {
     min-height: 300px;
     width: 100%;
     resize: none;
     border: 1px solid #C1CFD9;
     box-shadow: inset 0px 0px 3px #C1CFD9;
     outline: none;
     padding: 15px;
     margin-bottom: 20px;
     position: relative;
 }
 
 .newPost .editor .saved {
     position: absolute;
     bottom: 0;
     right: 0;
     display: block;
     width: 45px;
     height: 45px;
     line-height: 45px;
     text-align: center;
     color: #FFF;
     text-transform: uppercase;
     background: #C1CFD9;
     font-weight: bold;
     border-top-left-radius: 15px;
 }
 
 .newPost .buttons {
     float: right;
 }
 
 .newPost .buttons button {
     float: left;
     width: 120px;
     height: 45px;
     border: none;
     color: #FFF;
     text-transform: uppercase;
     outline: none;
     margin-right: 20px;
     font-weight: bold;
     background: #C1CFD9;
     text-decoration: none;
 }
 
 .newPost .buttons button:last-of-type {
     margin-right: 0px;
     background: #F97E76;
 }
 
 .newPost .buttons button:last-of-type:hover {
     background: #fa958e;
 }
 
 .newPost .buttons button:active {
     box-shadow: inset 0px 4px rgba(0, 0, 0, 0.05);
 }
 
 .newPost .buttons button:hover {
     background: #d1dbe3;
 }
 
 .newPost .buttons:after {
     content: "";
     display: block;
     clear: both;
 }
 
 .newPost:after {
     content: "";
     display: block;
     clear: both;
 }
 
 #partners {
     background-color: whitesmoke;
     padding-top: 4rem;
     padding-bottom: 4rem;
     margin-top: 5rem;
     margin-bottom: 8.9925282510272rem;
     overflow: hidden;
 }
 
 #partners>div {
     margin-bottom: 0;
 }
 
 #partner {
     padding-top: 5rem;
     padding-bottom: 7rem;
 }
 
 .partnerCards {
     padding: 2rem 0rem 0rem;
     justify-content: space-around !important;
 }
 
 .partnerCard:nth-child(1) {
     width: 174px !important;
 }
 
 .partnerCard:nth-child(2) {
     width: 80px !important;
 }
 
 .partnerCard:nth-child(3) {
     width: 170px !important;
 }
 
 .partnerCard img {
     width: 100% !important;
     height: 100% !important;
     transform: scale(1);
     transition: all .3s ease;
 }
 
 .partnerCard:hover img {
     transform: scale(1.03);
     transition: all .3s ease;
 }
 
 .lang {
     color: var(--main);
     font-weight: 900;
     margin-right: 1rem;
     margin-left: 1rem;
 }
 
 @media (min-width: 768px) {
     .container {}
     .sidebar {
         visibility: visible !important;
     }
 }
 
 @media (min-width: 992px) {
     .container {
         width: 970px;
     }
 }
 
 @media (min-width: 1200px) {
     .container {
         width: 1095px;
     }
 }
 
 @media (min-width: 1310px) {
     .container {
         width: 1251px;
     }
 }
 
 @media (max-width: 1310px) {
     .rightSection h1 {
         font-size: 1.7rem;
     }
     .rightSection p {
         font-size: 1rem;
     }
     .longCardDetails {
         padding: 0em 0em;
     }
     .singleLongCard {
         flex-direction: column;
     }
     .singleLongCard img {
         padding-bottom: 2em;
         justify-content: flex-start;
     }
     .aboutImage img {
         width: 200px;
     }
 }
 
 @media (max-width: 1024px) {
     .wholeCards {
         flex-direction: column;
     }
 }
 
 @media(max-width: 992px) {
     .rightSection h1 {
         font-size: 1.5rem;
     }
     .rightSection p {
         font-size: 1rem;
     }
     .myButton a {
         font-size: medium;
     }
     .responsiveCarousel {
         display: flex !important;
     }
     .notResponsiveCarousel {
         display: none !important;
     }
     .aboutImageAbsoluteProjects {
         display: none;
     }
     .aboutImage img {
         width: 250px;
     }
     #hero {
         height: fit-content;
     }
     .wholeCardsServicesIndex {
         grid-template-columns: repeat(2, minmax(0px, 433px)) !important;
     }
     .aboutDetails {
         width: 100%;
     }
     .aboutDetailsCard {
         margin-top: 2rem;
     }
     .aboutImage {
         width: 100%;
     }
     .socialMediaFooter {
         align-self: flex-start;
         margin-top: 1rem;
     }
     .socialMediaFooter img:nth-child(1) {
         margin-top: 24px;
         margin: 0;
         margin-left: .5rem;
     }
     .socialMediaFooter img {
         margin: 0;
         margin-right: .5rem;
         margin-left: .5rem;
     }
     .contactText {
         margin: 0;
         margin-right: 1.2rem;
         margin-left: 1.2rem;
     }
     .projectsWholeCards {
         grid-template-columns: repeat(2, minmax(0px, 341px)) !important;
     }
     .blogsWholeCards {
         grid-template-columns: repeat(2, minmax(0px, 376px)) !important;
     }
     .rightServiceSide,
     .leftServiceSide,
     .contactRight,
     .contactLeft {
         width: 100%;
     }
     .serviceDesc {
         width: 100%;
     }
     .rightServiceSide {
         margin-top: 2rem;
     }
     .contactRight {
         margin-top: 3rem;
     }
     .rightAboutSection {}
     .secondAboutImage {
         position: relative;
     }
     .firstAboutImage {
         position: relative;
     }
     #contactPage {
         background: none;
     }
     #contactRightImage {
         display: none;
     }
     .contactRight .loginDetails {
         padding-top: 0rem;
     }
     .contactLeft {
         padding-top: 0;
     }
     .contactRight {
         padding-left: 2rem;
     }
 }
 
 .swiper-button-next .first,
 .swiper-button-prev .first {
     width: 20px !important;
 }
 
 .swiper-button-next .second,
 .swiper-button-prev .second {
     width: 0 !important;
     margin: 0;
 }
 
 .swiper-button-next:hover .second {
     margin-left: 0.5em;
     width: 10px !important;
 }
 
 .swiper-button-prev:hover .second {
     margin-right: 0.5em;
     width: 10px !important;
 }
 
 @media (max-width: 827px) {
     .aboutImage img {
         width: 100%;
     }
     .projectBackground img {
         display: none;
     }
     .header {
         justify-content: flex-end !important;
     }
     .hamburger {
         display: block;
         right: 15px;
     }
     .hamburger.is-active {
         display: block;
         right: 47px;
         top: 8px;
     }
     .regular {
         display: none !important;
     }
     @media (max-width: 806px) {
         .servicesHeadingSection {
             background-image: url(../images/new/servicesSmallDevice.png);
             height: 508px;
         }
         .blogsHeadingSection {
             background-image: url(../images/new/blogsSmallerDevice.png);
             height: 367px;
             background-position: center;
         }
         .en .blogsHeadingSection {
             background-image: url(../images/new/blogsSmallerDeviceEn.png);
             height: 367px;
             background-position: center;
         }
         .partnerCard img {
             margin-bottom: 5rem;
         }
         .singleDetail {
             z-index: 0;
             width: 11rem;
             height: 42px;
             padding: 0rem 1rem;
         }
         .wholeCardsServicesIndex {
             grid-template-columns: repeat(1, minmax(0px, 433px)) !important;
         }
         .blog-slider .quotes {
             display: none;
         }
         .sidebar {
             visibility: hidden;
         }
         .menu__btn {
             visibility: visible;
         }
         .content {
             margin-left: 0px;
         }
         header {
             position: fixed;
         }
         .header {
             position: relative;
         }
         .cardImage {
             width: 100%;
             object-fit: contain;
         }
         .leftSection {
             display: none;
         }
         #hero {
             justify-content: space-around;
             padding-bottom: 0rem !important;
         }
         #hero .rightSection {
             width: 100%;
         }
         .leftSection img {
             display: none;
         }
         .heroContainer {
             display: block !important;
             margin-top: 4rem;
         }
         .withQuote img {
             right: 10px;
         }
         .downArrow {
             margin: 0;
         }
         .innerHeader {
             padding-top: 0.5rem;
             padding-bottom: 0.5rem;
         }
         ._2cols,
         ._3cols {
             grid-template-columns: repeat(1, minmax(0px, 600px));
         }
         .projectsWholeCards {
             grid-template-columns: repeat(1, minmax(0px, 341px)) !important;
         }
         .blogsWholeCards {
             grid-template-columns: repeat(1, minmax(0px, 376px)) !important;
         }
     }
     @media (max-width: 600px) {
         .content {
             padding: 5em 1em;
         }
         section {
             padding: 2em 0.5em;
         }
         .login {
             margin: 20px;
         }
         #hero .rightSection {
             margin-bottom: 2rem;
         }
         .singleCard {
             padding: 2rem;
         }
     }
     @media (max-width: 400px) {
         .servicesHeadingSection {
             background-image: url(../images/new/servicesSmallDevice.png);
             height: 408px;
         }
     }
     @media (max-width: 500px) {
         .blogsHeadingSection {
             background-image: url(../images/new/blogsSmallerDevice.png);
             height: 210px;
             background-size: contain;
         }
         .en .blogsHeadingSection {
             background-image: url(../images/new/blogsSmallerDeviceEn.png);
             height: 210px;
             background-size: contain;
         }
     }
     @media (max-width: 320px) {
         .sidebar {
             width: 258px;
         }
     }
 }
 
 .flickity-slider {
     transform: translateX(8.14%);
     display: flex;
     justify-content: center;
     align-items: center;
 }
 
 .projectCompanyLogo {
     width: 7rem;
     height: 3rem;
 }
 
 .projectCompanyLogo img {
     width: 100% !important;
     height: 100%;
     object-fit: contain;
     object-position: right;
 }
 
 @media (max-width: 992px) {
     #team-carousel .nav-btn {
         top: 283px !important;
     }
 }