/* Minify_CSS_UriRewriter::$debugText

*/

/* styles.css */

/* 1   */ .wpcf7 .screen-reader-response {
/* 2   */ 	position: absolute;
/* 3   */ 	overflow: hidden;
/* 4   */ 	clip: rect(1px, 1px, 1px, 1px);
/* 5   */ 	clip-path: inset(50%);
/* 6   */ 	height: 1px;
/* 7   */ 	width: 1px;
/* 8   */ 	margin: -1px;
/* 9   */ 	padding: 0;
/* 10  */ 	border: 0;
/* 11  */ 	word-wrap: normal !important;
/* 12  */ }
/* 13  */
/* 14  */ .wpcf7 form .wpcf7-response-output {
/* 15  */ 	margin: 2em 0.5em 1em;
/* 16  */ 	padding: 0.2em 1em;
/* 17  */ 	border: 2px solid #00a0d2; /* Blue */
/* 18  */ }
/* 19  */
/* 20  */ .wpcf7 form.init .wpcf7-response-output,
/* 21  */ .wpcf7 form.resetting .wpcf7-response-output,
/* 22  */ .wpcf7 form.submitting .wpcf7-response-output {
/* 23  */ 	display: none;
/* 24  */ }
/* 25  */
/* 26  */ .wpcf7 form.sent .wpcf7-response-output {
/* 27  */ 	border-color: #46b450; /* Green */
/* 28  */ }
/* 29  */
/* 30  */ .wpcf7 form.failed .wpcf7-response-output,
/* 31  */ .wpcf7 form.aborted .wpcf7-response-output {
/* 32  */ 	border-color: #dc3232; /* Red */
/* 33  */ }
/* 34  */
/* 35  */ .wpcf7 form.spam .wpcf7-response-output {
/* 36  */ 	border-color: #f56e28; /* Orange */
/* 37  */ }
/* 38  */
/* 39  */ .wpcf7 form.invalid .wpcf7-response-output,
/* 40  */ .wpcf7 form.unaccepted .wpcf7-response-output,
/* 41  */ .wpcf7 form.payment-required .wpcf7-response-output {
/* 42  */ 	border-color: #ffb900; /* Yellow */
/* 43  */ }
/* 44  */
/* 45  */ .wpcf7-form-control-wrap {
/* 46  */ 	position: relative;
/* 47  */ }
/* 48  */
/* 49  */ .wpcf7-not-valid-tip {
/* 50  */ 	color: #dc3232; /* Red */

/* styles.css */

/* 51  */ 	font-size: 1em;
/* 52  */ 	font-weight: normal;
/* 53  */ 	display: block;
/* 54  */ }
/* 55  */
/* 56  */ .use-floating-validation-tip .wpcf7-not-valid-tip {
/* 57  */ 	position: relative;
/* 58  */ 	top: -2ex;
/* 59  */ 	left: 1em;
/* 60  */ 	z-index: 100;
/* 61  */ 	border: 1px solid #dc3232;
/* 62  */ 	background: #fff;
/* 63  */ 	padding: .2em .8em;
/* 64  */ 	width: 24em;
/* 65  */ }
/* 66  */
/* 67  */ .wpcf7-list-item {
/* 68  */ 	display: inline-block;
/* 69  */ 	margin: 0 0 0 1em;
/* 70  */ }
/* 71  */
/* 72  */ .wpcf7-list-item-label::before,
/* 73  */ .wpcf7-list-item-label::after {
/* 74  */ 	content: " ";
/* 75  */ }
/* 76  */
/* 77  */ .wpcf7-spinner {
/* 78  */ 	visibility: hidden;
/* 79  */ 	display: inline-block;
/* 80  */ 	background-color: #23282d; /* Dark Gray 800 */
/* 81  */ 	opacity: 0.75;
/* 82  */ 	width: 24px;
/* 83  */ 	height: 24px;
/* 84  */ 	border: none;
/* 85  */ 	border-radius: 100%;
/* 86  */ 	padding: 0;
/* 87  */ 	margin: 0 24px;
/* 88  */ 	position: relative;
/* 89  */ }
/* 90  */
/* 91  */ form.submitting .wpcf7-spinner {
/* 92  */ 	visibility: visible;
/* 93  */ }
/* 94  */
/* 95  */ .wpcf7-spinner::before {
/* 96  */ 	content: '';
/* 97  */ 	position: absolute;
/* 98  */ 	background-color: #fbfbfc; /* Light Gray 100 */
/* 99  */ 	top: 4px;
/* 100 */ 	left: 4px;

/* styles.css */

/* 101 */ 	width: 6px;
/* 102 */ 	height: 6px;
/* 103 */ 	border: none;
/* 104 */ 	border-radius: 100%;
/* 105 */ 	transform-origin: 8px 8px;
/* 106 */ 	animation-name: spin;
/* 107 */ 	animation-duration: 1000ms;
/* 108 */ 	animation-timing-function: linear;
/* 109 */ 	animation-iteration-count: infinite;
/* 110 */ }
/* 111 */
/* 112 */ @media (prefers-reduced-motion: reduce) {
/* 113 */ 	.wpcf7-spinner::before {
/* 114 */ 		animation-name: blink;
/* 115 */ 		animation-duration: 2000ms;
/* 116 */ 	}
/* 117 */ }
/* 118 */
/* 119 */ @keyframes spin {
/* 120 */ 	from {
/* 121 */ 		transform: rotate(0deg);
/* 122 */ 	}
/* 123 */
/* 124 */ 	to {
/* 125 */ 		transform: rotate(360deg);
/* 126 */ 	}
/* 127 */ }
/* 128 */
/* 129 */ @keyframes blink {
/* 130 */ 	from {
/* 131 */ 		opacity: 0;
/* 132 */ 	}
/* 133 */
/* 134 */ 	50% {
/* 135 */ 		opacity: 1;
/* 136 */ 	}
/* 137 */
/* 138 */ 	to {
/* 139 */ 		opacity: 0;
/* 140 */ 	}
/* 141 */ }
/* 142 */
/* 143 */ .wpcf7 [inert] {
/* 144 */ 	opacity: 0.5;
/* 145 */ }
/* 146 */
/* 147 */ .wpcf7 input[type="file"] {
/* 148 */ 	cursor: pointer;
/* 149 */ }
/* 150 */

/* styles.css */

/* 151 */ .wpcf7 input[type="file"]:disabled {
/* 152 */ 	cursor: default;
/* 153 */ }
/* 154 */
/* 155 */ .wpcf7 .wpcf7-submit:disabled {
/* 156 */ 	cursor: not-allowed;
/* 157 */ }
/* 158 */
/* 159 */ .wpcf7 input[type="url"],
/* 160 */ .wpcf7 input[type="email"],
/* 161 */ .wpcf7 input[type="tel"] {
/* 162 */ 	direction: ltr;
/* 163 */ }
/* 164 */
/* 165 */ .wpcf7-reflection > output {
/* 166 */ 	display: list-item;
/* 167 */ 	list-style: none;
/* 168 */ }
/* 169 */
/* 170 */ .wpcf7-reflection > output[hidden] {
/* 171 */ 	display: none;
/* 172 */ }
/* 173 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* style.css */

/* 1  */ /*!
/* 2  *| Theme Name: Brainstream
/* 3  *| Theme URI: http://underscores.me/
/* 4  *| Author: Underscores.me
/* 5  *| Author URI: http://underscores.me/
/* 6  *| Description: Description
/* 7  *| Version: 1.0.0
/* 8  *| Tested up to: 5.4
/* 9  *| Requires PHP: 5.6
/* 10 *| License: GNU General Public License v2 or later
/* 11 *| License URI: LICENSE
/* 12 *| Text Domain: brainstream
/* 13 *| Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
/* 14 *|
/* 15 *| This theme, like WordPress, is licensed under the GPL.
/* 16 *| Use it to make something cool, have fun, and share what you've learned.
/* 17 *|
/* 18 *| Brainstream is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
/* 19 *| Underscores is distributed under the terms of the GNU GPL v2 or later.
/* 20 *|
/* 21 *| Normalizing styles have been helped along thanks to the fine work of
/* 22 *| Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
/* 23 *| */
/* 24 */
/* 25 */ /*--------------------------------------------------------------
/* 26 *| >>> TABLE OF CONTENTS:
/* 27 *| ----------------------------------------------------------------
/* 28 *| # Generic
/* 29 *| 	- Normalize
/* 30 *| 	- Box sizing
/* 31 *| # Base
/* 32 *| 	- Typography
/* 33 *| 	- Elements
/* 34 *| 	- Links
/* 35 *| 	- Forms
/* 36 *| ## Layouts
/* 37 *| # Components
/* 38 *| 	- Navigation
/* 39 *| 	- Posts and pages
/* 40 *| 	- Comments
/* 41 *| 	- Widgets
/* 42 *| 	- Media
/* 43 *| 	- Captions
/* 44 *| 	- Galleries
/* 45 *| # plugins
/* 46 *| 	- Jetpack infinite scroll
/* 47 *| # Utilities
/* 48 *| 	- Accessibility
/* 49 *| 	- Alignments
/* 50 *|

/* style.css *|

/* 51 *| --------------------------------------------------------------*/
/* 52 */
/* 53 */ /*--------------------------------------------------------------
/* 54 *| # Generic
/* 55 *| --------------------------------------------------------------*/
/* 56 */
/* 57 */ /* Normalize
/* 58 *| --------------------------------------------- */
/* 59 */
/* 60 */ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* 61 */
/* 62 */
/* 63 */ *{
/* 64 */     font-optical-sizing: none !important;
/* 65 */     letter-spacing: 0.02px;
/* 66 */ }
/* 67 */
/* 68 */ @font-face {
/* 69 */   font-family: 'Inter';
/* 70 */   font-style: normal;
/* 71 */   font-display: swap;
/* 72 */   src: local('Inter'),
/* 73 */       url('/wp-content/themes/brainstream/assets/fonts/Inter-font-google.woff2') format('woff2'),
/* 74 */ }
/* Minify_CSS_UriRewriter::$debugText

*/

/* app.css */

/* 1     */
/* 2     */ .container,
/* 3     */ .woocommerce:not(.single-product),
/* 4     */ .masthead .owl-dots-cont {
/* 5     */   padding-right: 15px;
/* 6     */   padding-left: 15px;
/* 7     */   margin-right: auto;
/* 8     */   margin-left: auto;
/* 9     */ }
/* 10    */
/* 11    */ @media (min-width: 768px) {
/* 12    */
/* 13    */   .container,
/* 14    */   .woocommerce:not(.single-product),
/* 15    */   .masthead .owl-dots-cont {
/* 16    */     max-width: 750px;
/* 17    */   }
/* 18    */ }
/* 19    */
/* 20    */ @media (min-width: 992px) {
/* 21    */
/* 22    */   .container,
/* 23    */   .woocommerce:not(.single-product),
/* 24    */   .masthead .owl-dots-cont {
/* 25    */     max-width: 970px;
/* 26    */   }
/* 27    */ }
/* 28    */
/* 29    */ @media (min-width: 1200px) {
/* 30    */
/* 31    */   .container,
/* 32    */   .woocommerce:not(.single-product),
/* 33    */   .masthead .owl-dots-cont {
/* 34    */     max-width: 1170px;
/* 35    */   }
/* 36    */ }
/* 37    */
/* 38    */ @media (min-width: 1440px) {
/* 39    */
/* 40    */   .container,
/* 41    */   .woocommerce:not(.single-product),
/* 42    */   .masthead .owl-dots-cont {
/* 43    */     max-width: 1320px;
/* 44    */   }
/* 45    */ }
/* 46    */
/* 47    */ @media (min-width: 1600px) {
/* 48    */
/* 49    */   .container,
/* 50    */   .woocommerce:not(.single-product),

/* app.css */

/* 51    */   .masthead .owl-dots-cont {
/* 52    */     max-width: 1500px;
/* 53    */   }
/* 54    */ }
/* 55    */
/* 56    */ .row {
/* 57    */   display: -webkit-box;
/* 58    */   display: -ms-flexbox;
/* 59    */   display: flex;
/* 60    */   -ms-flex-wrap: wrap;
/* 61    */   flex-wrap: wrap;
/* 62    */   margin-right: -15px;
/* 63    */   margin-left: -15px;
/* 64    */ }
/* 65    */
/* 66    */ .container:before,
/* 67    */ .container:after,
/* 68    */ .row:before,
/* 69    */ .row:after {
/* 70    */   display: table;
/* 71    */   content: " ";
/* 72    */ }
/* 73    */
/* 74    */ .container:after,
/* 75    */ .row:after {
/* 76    */   clear: both;
/* 77    */ }
/* 78    */
/* 79    */ .align-items-center {
/* 80    */   -webkit-box-align: center !important;
/* 81    */   -ms-flex-align: center !important;
/* 82    */   align-items: center !important;
/* 83    */ }
/* 84    */
/* 85    */ .justify-content-center {
/* 86    */   -ms-flex-pack: center !important;
/* 87    */   justify-content: center !important;
/* 88    */ }
/* 89    */ *,
/* 90    */ *::before,
/* 91    */ *::after {
/* 92    */   margin: 0;
/* 93    */   padding: 0;
/* 94    */   box-sizing: border-box;
/* 95    */ }
/* 96    */
/* 97    */ html {
/* 98    */   font-size: 10px;
/* 99    */   -ms-text-size-adjust: 100%;
/* 100   */   -webkit-text-size-adjust: 100%;

/* app.css */

/* 101   */ }
/* 102   */
/* 103   */ body {
/* 104   */   -moz-osx-font-smoothing: grayscale;
/* 105   */   -webkit-font-smoothing: antialiased;
/* 106   */ }
/* 107   */
/* 108   */ h1,
/* 109   */ h2,
/* 110   */ h3,
/* 111   */ h4,
/* 112   */ h5,
/* 113   */ h6,
/* 114   */ p,
/* 115   */ blockquote,
/* 116   */ figure,
/* 117   */ ol,
/* 118   */ ul,
/* 119   */ dl {
/* 120   */   margin: 0;
/* 121   */   padding: 0;
/* 122   */ }
/* 123   */
/* 124   */ main,
/* 125   */ li {
/* 126   */   display: block;
/* 127   */ }
/* 128   */
/* 129   */ h1,
/* 130   */ h2,
/* 131   */ h3,
/* 132   */ h4,
/* 133   */ h5,
/* 134   */ h6 {
/* 135   */   font-size: inherit;
/* 136   */ }
/* 137   */
/* 138   */ strong {
/* 139   */   font-weight: 700;
/* 140   */ }
/* 141   */
/* 142   */ a,
/* 143   */ button {
/* 144   */   color: inherit;
/* 145   */
/* 146   */ }
/* 147   */
/* 148   */ a {
/* 149   */   text-decoration: none;
/* 150   */ }

/* app.css */

/* 151   */
/* 152   */ button {
/* 153   */   background: none;
/* 154   */   border: 0;
/* 155   */   cursor: pointer;
/* 156   */   font: inherit;
/* 157   */   -webkit-font-smoothing: inherit;
/* 158   */   letter-spacing: inherit;
/* 159   */   overflow: visible;
/* 160   */   padding: 0;
/* 161   */ }
/* 162   */
/* 163   */ ::-moz-focus-inner {
/* 164   */   border: 0;
/* 165   */   padding: 0;
/* 166   */ }
/* 167   */
/* 168   */ :focus {
/* 169   */   outline: 0;
/* 170   */ }
/* 171   */
/* 172   */ img {
/* 173   */   border: 0;
/* 174   */   height: auto;
/* 175   */   max-width: 100%;
/* 176   */ }
/* 177   */
/* 178   */ dt,
/* 179   */ dd {
/* 180   */   display: block;
/* 181   */   margin: 0;
/* 182   */   padding: 0;
/* 183   */ }
/* 184   */
/* 185   */ input,
/* 186   */ select,
/* 187   */ textarea {
/* 188   */   border-radius: 0;
/* 189   */ }
/* 190   */
/* 191   */ [type='search'] {
/* 192   */   appearance: none;
/* 193   */ }
/* 194   */ body {
/* 195   */     font-family: 'Inter';
/* 196   */     font-weight: 400;
/* 197   */     font-style: normal;
/* 198   */     color: var(--black);
/* 199   */     font-size: 1.4rem;
/* 200   */     line-height: 2rem;

/* app.css */

/* 201   */ }
/* 202   */
/* 203   */ @media (min-width: 768px) {
/* 204   */     body {
/* 205   */         font-size: 1.5rem;
/* 206   */     }
/* 207   */ }
/* 208   */
/* 209   */ @media (min-width: 992px) {
/* 210   */     body {
/* 211   */         font-size: 1.6rem;
/* 212   */         line-height: 2.2rem;
/* 213   */     }
/* 214   */ }
/* 215   */
/* 216   */ img {
/* 217   */     max-width: 100%;
/* 218   */     display: block;
/* 219   */ }
/* 220   */
/* 221   */ section {
/* 222   */     overflow: hidden;
/* 223   */ }
/* 224   */
/* 225   */ /* Button styles */
/* 226   */ .btn,
/* 227   */ .woocommerce div.product form.cart .button,
/* 228   */ .woocommerce .cart .button,
/* 229   */ .woocommerce .cart input.button,
/* 230   */ .woocommerce #respond input#submit,
/* 231   */ .woocommerce a.button,
/* 232   */ .woocommerce button.button,
/* 233   */ .woocommerce input.button,
/* 234   */ input[type="submit"] {
/* 235   */     cursor: pointer;
/* 236   */     padding: 5px 10px;
/* 237   */     font-size: 1.6rem;
/* 238   */     line-height: 2.2rem;
/* 239   */     color: var(--black);
/* 240   */     background: var(--white);
/* 241   */     font-weight: 400;
/* 242   */     display: inline-block;
/* 243   */     text-transform: capitalize;
/* 244   */     position: relative;
/* 245   */ }
/* 246   */
/* 247   */ @media (min-width: 768px) {
/* 248   */     .btn,
/* 249   */     .woocommerce div.product form.cart .button,
/* 250   */     .woocommerce .cart .button,

/* app.css */

/* 251   */     .woocommerce .cart input.button,
/* 252   */     .woocommerce #respond input#submit,
/* 253   */     .woocommerce a.button,
/* 254   */     .woocommerce button.button,
/* 255   */     .woocommerce input.button,
/* 256   */     input[type="submit"] {
/* 257   */         padding: 8px 16px;
/* 258   */         font-size: 2rem;
/* 259   */         line-height: 2.5rem;
/* 260   */     }
/* 261   */ }
/* 262   */
/* 263   */ @media (min-width: 992px) {
/* 264   */     .btn,
/* 265   */     .woocommerce div.product form.cart .button,
/* 266   */     .woocommerce .cart .button,
/* 267   */     .woocommerce .cart input.button,
/* 268   */     .woocommerce #respond input#submit,
/* 269   */     .woocommerce a.button,
/* 270   */     .woocommerce button.button,
/* 271   */     .woocommerce input.button,
/* 272   */     input[type="submit"] {
/* 273   */         padding: 10px 20px;
/* 274   */         font-size: 2.2rem;
/* 275   */         line-height: 2.7rem;
/* 276   */     }
/* 277   */ }
/* 278   */
/* 279   */ @media (min-width: 1440px) {
/* 280   */     .btn,
/* 281   */     .woocommerce div.product form.cart .button,
/* 282   */     .woocommerce .cart .button,
/* 283   */     .woocommerce .cart input.button,
/* 284   */     .woocommerce #respond input#submit,
/* 285   */     .woocommerce a.button,
/* 286   */     .woocommerce button.button,
/* 287   */     .woocommerce input.button,
/* 288   */     input[type="submit"] {
/* 289   */         padding: 12px 24px;
/* 290   */         font-size: 2.4rem;
/* 291   */         line-height: 2.9rem;
/* 292   */     }
/* 293   */ }
/* 294   */
/* 295   */ .btn:hover,
/* 296   */ .woocommerce div.product form.cart .button:hover,
/* 297   */ .woocommerce .cart .button:hover,
/* 298   */ .woocommerce .cart input.button:hover,
/* 299   */ .woocommerce #respond input#submit:hover,
/* 300   */ .woocommerce a.button:hover,

/* app.css */

/* 301   */ .woocommerce button.button:hover,
/* 302   */ .woocommerce input.button:hover,
/* 303   */ input[type="submit"]:hover {
/* 304   */     background: var(--orange);
/* 305   */     color: var(--white);
/* 306   */ }
/* 307   */
/* 308   */ /* Button arrow styles */
/* 309   */ .btn:before,
/* 310   */ .woocommerce div.product form.cart .button:before,
/* 311   */ .woocommerce .cart .button:before,
/* 312   */ .woocommerce .cart input.button:before,
/* 313   */ .woocommerce #respond input#submit:before,
/* 314   */ .woocommerce a.button:before,
/* 315   */ .woocommerce button.button:before,
/* 316   */ .woocommerce input.button:before,
/* 317   */ input[type="submit"]:before {
/* 318   */     content: "";
/* 319   */     position: absolute;
/* 320   */     top: 0;
/* 321   */     right: 0;
/* 322   */     width: 0;
/* 323   */     height: 0;
/* 324   */     border-style: solid;
/* 325   */     border-width: 0 10px 10px 0;
/* 326   */     border-color: transparent #F37023 transparent transparent;
/* 327   */ }
/* 328   */
/* 329   */ @media (min-width: 768px) {
/* 330   */     .btn:before,
/* 331   */     .woocommerce div.product form.cart .button:before,
/* 332   */     .woocommerce .cart .button:before,
/* 333   */     .woocommerce .cart input.button:before,
/* 334   */     .woocommerce #respond input#submit:before,
/* 335   */     .woocommerce a.button:before,
/* 336   */     .woocommerce button.button:before,
/* 337   */     .woocommerce input.button:before,
/* 338   */     input[type="submit"]:before {
/* 339   */         border-width: 0 15px 15px 0;
/* 340   */     }
/* 341   */ }
/* 342   */
/* 343   */ @media (min-width: 992px) {
/* 344   */     .btn:before,
/* 345   */     .woocommerce div.product form.cart .button:before,
/* 346   */     .woocommerce .cart .button:before,
/* 347   */     .woocommerce .cart input.button:before,
/* 348   */     .woocommerce #respond input#submit:before,
/* 349   */     .woocommerce a.button:before,
/* 350   */     .woocommerce button.button:before,

/* app.css */

/* 351   */     .woocommerce input.button:before,
/* 352   */     input[type="submit"]:before {
/* 353   */         border-width: 0 22px 22px 0;
/* 354   */     }
/* 355   */ }
/* 356   */
/* 357   */ .text-center {
/* 358   */     text-align: center;
/* 359   */ }
/* 360   */
/* 361   */ .text-right {
/* 362   */     text-align: right;
/* 363   */ }
/* 364   */
/* 365   */ .alignleft {
/* 366   */     display: inline;
/* 367   */     float: left;
/* 368   */     margin-right: 1.5em;
/* 369   */ }
/* 370   */
/* 371   */ .alignright {
/* 372   */     display: inline;
/* 373   */     float: right;
/* 374   */     margin-left: 1.5em;
/* 375   */ }
/* 376   */
/* 377   */ .aligncenter {
/* 378   */     clear: both;
/* 379   */     display: block;
/* 380   */     margin-left: auto;
/* 381   */     margin-right: auto;
/* 382   */ }
/* 383   */
/* 384   */ /* Input and textarea styles */
/* 385   */ input[type="text"],
/* 386   */ input[type="password"],
/* 387   */ input[type="email"],
/* 388   */ input[type="number"],
/* 389   */ input[type="tel"],
/* 390   */ input[type="search"],
/* 391   */ select,
/* 392   */ textarea {
/* 393   */     width: 100%;
/* 394   */     max-width: 100%;
/* 395   */     border: 0;
/* 396   */     border-bottom: 1px solid var(--lblack);
/* 397   */     padding: 6px;
/* 398   */     margin-bottom: 0;
/* 399   */     border-radius: 0;
/* 400   */     font-family: 'Inter';

/* app.css */

/* 401   */     font-weight: 400;
/* 402   */     font-size: 1.5rem;
/* 403   */     line-height: 2.6rem;
/* 404   */ }
/* 405   */
/* 406   */ @media (min-width: 768px) {
/* 407   */     input[type="text"],
/* 408   */     input[type="password"],
/* 409   */     input[type="email"],
/* 410   */     input[type="number"],
/* 411   */     input[type="tel"],
/* 412   */     input[type="search"],
/* 413   */     select,
/* 414   */     textarea {
/* 415   */         padding: 8px;
/* 416   */         font-size: 1.8rem;
/* 417   */     }
/* 418   */ }
/* 419   */
/* 420   */ @media (min-width: 992px) {
/* 421   */     input[type="text"],
/* 422   */     input[type="password"],
/* 423   */     input[type="email"],
/* 424   */     input[type="number"],
/* 425   */     input[type="tel"],
/* 426   */     input[type="search"],
/* 427   */     select,
/* 428   */     textarea {
/* 429   */         padding: 10px;
/* 430   */     }
/* 431   */ }
/* 432   */
/* 433   */ select {
/* 434   */     background: url("/wp-content/uploads/2024/09/select-arv.svg") no-repeat scroll right 10px center, #fff;
/* 435   */     appearance: none;
/* 436   */     color: var(--black);
/* 437   */ }
/* 438   */
/* 439   */ @media (min-width: 768px) {
/* 440   */     select {
/* 441   */         background-position: right 20px center;
/* 442   */     }
/* 443   */ }
/* 444   */
/* 445   */ @media (min-width: 992px) {
/* 446   */     select {
/* 447   */         background-position: right 30px center;
/* 448   */     }
/* 449   */ }
/* 450   */

/* app.css */

/* 451   */ textarea {
/* 452   */     height: 100px;
/* 453   */     resize: none;
/* 454   */ }
/* 455   */
/* 456   */ /* wpcf7 styles */
/* 457   */ .wpcf7 form .wpcf7-response-output {
/* 458   */     position: relative;
/* 459   */     padding: 15px 25px !important;
/* 460   */     margin: 15px 0 0 0 !important;
/* 461   */     border-radius: 0 !important;
/* 462   */     text-align: center;
/* 463   */     font-weight: 600;
/* 464   */ }
/* 465   */
/* 466   */ .wpcf7-form.sent .wpcf7-response-output {
/* 467   */     color: #46b450;
/* 468   */     border: 2px solid #46b450 !important;
/* 469   */ }
/* 470   */
/* 471   */ .wpcf7 form.invalid .wpcf7-response-output,
/* 472   */ .wpcf7 form.failed .wpcf7-response-output,
/* 473   */ .wpcf7 form.unaccepted .wpcf7-response-output {
/* 474   */     color: red;
/* 475   */     background-color: white;
/* 476   */     border: 2px solid red;
/* 477   */ }
/* 478   */
/* 479   */ .wpcf7-not-valid,
/* 480   */ input.wpcf7-not-valid,
/* 481   */ textarea.wpcf7-not-valid {
/* 482   */     border-color: red;
/* 483   */ }
/* 484   */
/* 485   */ .wpcf7-not-valid-tip {
/* 486   */     position: absolute;
/* 487   */     left: 0;
/* 488   */     bottom: -30px;
/* 489   */     width: 100%;
/* 490   */     display: inline !important;
/* 491   */     white-space: nowrap;
/* 492   */ }
/* 493   */
/* 494   */ /* Miscellaneous */
/* 495   */ .coutry_name {
/* 496   */     pointer-events: none;
/* 497   */ }
/* 498   */
/* 499   */ .iti {
/* 500   */     width: 100%;

/* app.css */

/* 501   */ }
/* 502   */
/* 503   */ .iti .iti__selected-dial-code {
/* 504   */     color: var(--black);
/* 505   */     font-size: 1.8rem;
/* 506   */     line-height: 2.6rem;
/* 507   */ }
/* 508   */
/* 509   */ [data-name="coutry_name"] .iti__dial-code {
/* 510   */     display: none;
/* 511   */ }
/* 512   */
/* 513   */ [data-name="coutry_name"] .iti__country-name {
/* 514   */     max-width: 100%;
/* 515   */     margin: 0;
/* 516   */ }
/* 517   */
/* 518   */ [data-name="coutry_name"] .iti__country-container,
/* 519   */ [data-name="coutry_name"] .iti__selected-country,
/* 520   */ [data-name="coutry_name"] .iti__selected-country-primary {
/* 521   */     width: 100%;
/* 522   */ }
/* 523   */
/* 524   */ [data-name="coutry_name"] .iti__selected-country-primary {
/* 525   */     justify-content: space-between;
/* 526   */ }
/* 527   */
/* 528   */ [data-name="coutry_name"] .coutry_name {
/* 529   */     padding-left: 40px !important;
/* 530   */ }
/* 531   */
/* 532   */ .choose-file .inside-div span.sucessMsg {
/* 533   */     font-size: 14px;
/* 534   */     font-weight: 400;
/* 535   */     line-height: 18px;
/* 536   */     letter-spacing: 0.01em;
/* 537   */     color: #007400 !important;
/* 538   */     margin-top: 7px;
/* 539   */     display: none;
/* 540   */ }
/* 541   */
/* 542   */ .wpcf7-form-control-wrap {
/* 543   */     height: 100%;
/* 544   */     display: block;
/* 545   */ }
/* 546   */
/* 547   */ .col-1,
/* 548   */ .col-2,
/* 549   */ .col-3,
/* 550   */ .col-4,

/* app.css */

/* 551   */ .col-5,
/* 552   */ .col-6,
/* 553   */ .col-7,
/* 554   */ .col-8,
/* 555   */ .col-9,
/* 556   */ .col-10,
/* 557   */ .col-11,
/* 558   */ .col-12,
/* 559   */ .col,
/* 560   */ .col-auto,
/* 561   */ .col-sm-1,
/* 562   */ .col-sm-2,
/* 563   */ .col-sm-3,
/* 564   */ .col-sm-4,
/* 565   */ .col-sm-5,
/* 566   */ .col-sm-6,
/* 567   */ .col-sm-7,
/* 568   */ .col-sm-8,
/* 569   */ .col-sm-9,
/* 570   */ .col-sm-10,
/* 571   */ .col-sm-11,
/* 572   */ .col-sm-12,
/* 573   */ .col-sm,
/* 574   */ .col-sm-auto,
/* 575   */ .col-md-1,
/* 576   */ .col-md-2,
/* 577   */ .col-md-3,
/* 578   */ .col-md-4,
/* 579   */ .col-md-5,
/* 580   */ .col-md-6,
/* 581   */ .col-md-7,
/* 582   */ .col-md-8,
/* 583   */ .col-md-9,
/* 584   */ .col-md-10,
/* 585   */ .col-md-11,
/* 586   */ .col-md-12,
/* 587   */ .col-md,
/* 588   */ .col-md-auto,
/* 589   */ .col-lg-1,
/* 590   */ .col-lg-2,
/* 591   */ .col-lg-3,
/* 592   */ .col-lg-4,
/* 593   */ .col-lg-5,
/* 594   */ .col-lg-6,
/* 595   */ .col-lg-7,
/* 596   */ .col-lg-8,
/* 597   */ .col-lg-9,
/* 598   */ .col-lg-10,
/* 599   */ .col-lg-11,
/* 600   */ .col-lg-12,

/* app.css */

/* 601   */ .col-lg,
/* 602   */ .col-lg-auto,
/* 603   */ .col-xl-1,
/* 604   */ .col-xl-2,
/* 605   */ .col-xl-3,
/* 606   */ .col-xl-4,
/* 607   */ .col-xl-5,
/* 608   */ .col-xl-6,
/* 609   */ .col-xl-7,
/* 610   */ .col-xl-8,
/* 611   */ .col-xl-9,
/* 612   */ .col-xl-10,
/* 613   */ .col-xl-11,
/* 614   */ .col-xl-12,
/* 615   */ .col-xl,
/* 616   */ .col-xl-auto {
/* 617   */     position: relative;
/* 618   */     width: 100%;
/* 619   */     padding-right: 15px;
/* 620   */     padding-left: 15px;
/* 621   */ }
/* 622   */
/* 623   */ .col {
/* 624   */     -ms-flex-preferred-size: 0;
/* 625   */     flex-basis: 0;
/* 626   */     -webkit-box-flex: 1;
/* 627   */     -ms-flex-positive: 1;
/* 628   */     flex-grow: 1;
/* 629   */     max-width: 100%;
/* 630   */ }
/* 631   */
/* 632   */ .col-1 {
/* 633   */     -webkit-box-flex: 0;
/* 634   */     -ms-flex: 0 0 8.3333333333%;
/* 635   */     flex: 0 0 8.3333333333%;
/* 636   */     max-width: 8.3333333333%;
/* 637   */ }
/* 638   */
/* 639   */ .col-2 {
/* 640   */     -webkit-box-flex: 0;
/* 641   */     -ms-flex: 0 0 16.6666666667%;
/* 642   */     flex: 0 0 16.6666666667%;
/* 643   */     max-width: 16.6666666667%;
/* 644   */ }
/* 645   */
/* 646   */ .col-3 {
/* 647   */     -webkit-box-flex: 0;
/* 648   */     -ms-flex: 0 0 25%;
/* 649   */     flex: 0 0 25%;
/* 650   */     max-width: 25%;

/* app.css */

/* 651   */ }
/* 652   */
/* 653   */ .col-4 {
/* 654   */     -webkit-box-flex: 0;
/* 655   */     -ms-flex: 0 0 33.3333333333%;
/* 656   */     flex: 0 0 33.3333333333%;
/* 657   */     max-width: 33.3333333333%;
/* 658   */ }
/* 659   */
/* 660   */ .col-5 {
/* 661   */     -webkit-box-flex: 0;
/* 662   */     -ms-flex: 0 0 41.6666666667%;
/* 663   */     flex: 0 0 41.6666666667%;
/* 664   */     max-width: 41.6666666667%;
/* 665   */ }
/* 666   */
/* 667   */ .col-6 {
/* 668   */     -webkit-box-flex: 0;
/* 669   */     -ms-flex: 0 0 50%;
/* 670   */     flex: 0 0 50%;
/* 671   */     max-width: 50%;
/* 672   */ }
/* 673   */
/* 674   */ .col-7 {
/* 675   */     -webkit-box-flex: 0;
/* 676   */     -ms-flex: 0 0 58.3333333333%;
/* 677   */     flex: 0 0 58.3333333333%;
/* 678   */     max-width: 58.3333333333%;
/* 679   */ }
/* 680   */
/* 681   */ .col-8 {
/* 682   */     -webkit-box-flex: 0;
/* 683   */     -ms-flex: 0 0 66.6666666667%;
/* 684   */     flex: 0 0 66.6666666667%;
/* 685   */     max-width: 66.6666666667%;
/* 686   */ }
/* 687   */
/* 688   */ .col-9 {
/* 689   */     -webkit-box-flex: 0;
/* 690   */     -ms-flex: 0 0 75%;
/* 691   */     flex: 0 0 75%;
/* 692   */     max-width: 75%;
/* 693   */ }
/* 694   */
/* 695   */ .col-10 {
/* 696   */     -webkit-box-flex: 0;
/* 697   */     -ms-flex: 0 0 83.3333333333%;
/* 698   */     flex: 0 0 83.3333333333%;
/* 699   */     max-width: 83.3333333333%;
/* 700   */ }

/* app.css */

/* 701   */
/* 702   */ .col-11 {
/* 703   */     -webkit-box-flex: 0;
/* 704   */     -ms-flex: 0 0 91.6666666667%;
/* 705   */     flex: 0 0 91.6666666667%;
/* 706   */     max-width: 91.6666666667%;
/* 707   */ }
/* 708   */
/* 709   */ .col-12 {
/* 710   */     -webkit-box-flex: 0;
/* 711   */     -ms-flex: 0 0 100%;
/* 712   */     flex: 0 0 100%;
/* 713   */     max-width: 100%;
/* 714   */ }
/* 715   */
/* 716   */ @media (min-width: 576px) {
/* 717   */     .col-sm-1 {
/* 718   */         -webkit-box-flex: 0;
/* 719   */         -ms-flex: 0 0 8.3333333333%;
/* 720   */         flex: 0 0 8.3333333333%;
/* 721   */         max-width: 8.3333333333%;
/* 722   */     }
/* 723   */
/* 724   */     .col-sm-2 {
/* 725   */         -webkit-box-flex: 0;
/* 726   */         -ms-flex: 0 0 16.6666666667%;
/* 727   */         flex: 0 0 16.6666666667%;
/* 728   */         max-width: 16.6666666667%;
/* 729   */     }
/* 730   */
/* 731   */     .col-sm-3 {
/* 732   */         -webkit-box-flex: 0;
/* 733   */         -ms-flex: 0 0 25%;
/* 734   */         flex: 0 0 25%;
/* 735   */         max-width: 25%;
/* 736   */     }
/* 737   */
/* 738   */     .col-sm-4 {
/* 739   */         -webkit-box-flex: 0;
/* 740   */         -ms-flex: 0 0 33.3333333333%;
/* 741   */         flex: 0 0 33.3333333333%;
/* 742   */         max-width: 33.3333333333%;
/* 743   */     }
/* 744   */
/* 745   */     .col-sm-5 {
/* 746   */         -webkit-box-flex: 0;
/* 747   */         -ms-flex: 0 0 41.6666666667%;
/* 748   */         flex: 0 0 41.6666666667%;
/* 749   */         max-width: 41.6666666667%;
/* 750   */     }

/* app.css */

/* 751   */
/* 752   */     .col-sm-6 {
/* 753   */         -webkit-box-flex: 0;
/* 754   */         -ms-flex: 0 0 50%;
/* 755   */         flex: 0 0 50%;
/* 756   */         max-width: 50%;
/* 757   */     }
/* 758   */
/* 759   */     .col-sm-7 {
/* 760   */         -webkit-box-flex: 0;
/* 761   */         -ms-flex: 0 0 58.3333333333%;
/* 762   */         flex: 0 0 58.3333333333%;
/* 763   */         max-width: 58.3333333333%;
/* 764   */     }
/* 765   */
/* 766   */     .col-sm-8 {
/* 767   */         -webkit-box-flex: 0;
/* 768   */         -ms-flex: 0 0 66.6666666667%;
/* 769   */         flex: 0 0 66.6666666667%;
/* 770   */         max-width: 66.6666666667%;
/* 771   */     }
/* 772   */
/* 773   */     .col-sm-9 {
/* 774   */         -webkit-box-flex: 0;
/* 775   */         -ms-flex: 0 0 75%;
/* 776   */         flex: 0 0 75%;
/* 777   */         max-width: 75%;
/* 778   */     }
/* 779   */
/* 780   */     .col-sm-10 {
/* 781   */         -webkit-box-flex: 0;
/* 782   */         -ms-flex: 0 0 83.3333333333%;
/* 783   */         flex: 0 0 83.3333333333%;
/* 784   */         max-width: 83.3333333333%;
/* 785   */     }
/* 786   */
/* 787   */     .col-sm-11 {
/* 788   */         -webkit-box-flex: 0;
/* 789   */         -ms-flex: 0 0 91.6666666667%;
/* 790   */         flex: 0 0 91.6666666667%;
/* 791   */         max-width: 91.6666666667%;
/* 792   */     }
/* 793   */
/* 794   */     .col-sm-12 {
/* 795   */         -webkit-box-flex: 0;
/* 796   */         -ms-flex: 0 0 100%;
/* 797   */         flex: 0 0 100%;
/* 798   */         max-width: 100%;
/* 799   */     }
/* 800   */ }

/* app.css */

/* 801   */
/* 802   */ @media (min-width: 768px) {
/* 803   */     .col-md-1 {
/* 804   */         -webkit-box-flex: 0;
/* 805   */         -ms-flex: 0 0 8.3333333333%;
/* 806   */         flex: 0 0 8.3333333333%;
/* 807   */         max-width: 8.3333333333%;
/* 808   */     }
/* 809   */
/* 810   */     .col-md-2 {
/* 811   */         -webkit-box-flex: 0;
/* 812   */         -ms-flex: 0 0 16.6666666667%;
/* 813   */         flex: 0 0 16.6666666667%;
/* 814   */         max-width: 16.6666666667%;
/* 815   */     }
/* 816   */
/* 817   */     .col-md-3 {
/* 818   */         -webkit-box-flex: 0;
/* 819   */         -ms-flex: 0 0 25%;
/* 820   */         flex: 0 0 25%;
/* 821   */         max-width: 25%;
/* 822   */     }
/* 823   */
/* 824   */     .col-md-4 {
/* 825   */         -webkit-box-flex: 0;
/* 826   */         -ms-flex: 0 0 33.3333333333%;
/* 827   */         flex: 0 0 33.3333333333%;
/* 828   */         max-width: 33.3333333333%;
/* 829   */     }
/* 830   */
/* 831   */     .col-md-5 {
/* 832   */         -webkit-box-flex: 0;
/* 833   */         -ms-flex: 0 0 41.6666666667%;
/* 834   */         flex: 0 0 41.6666666667%;
/* 835   */         max-width: 41.6666666667%;
/* 836   */     }
/* 837   */
/* 838   */     .col-md-6 {
/* 839   */         -webkit-box-flex: 0;
/* 840   */         -ms-flex: 0 0 50%;
/* 841   */         flex: 0 0 50%;
/* 842   */         max-width: 50%;
/* 843   */     }
/* 844   */
/* 845   */     .col-md-7 {
/* 846   */         -webkit-box-flex: 0;
/* 847   */         -ms-flex: 0 0 58.3333333333%;
/* 848   */         flex: 0 0 58.3333333333%;
/* 849   */         max-width: 58.3333333333%;
/* 850   */     }

/* app.css */

/* 851   */
/* 852   */     .col-md-8 {
/* 853   */         -webkit-box-flex: 0;
/* 854   */         -ms-flex: 0 0 66.6666666667%;
/* 855   */         flex: 0 0 66.6666666667%;
/* 856   */         max-width: 66.6666666667%;
/* 857   */     }
/* 858   */
/* 859   */     .col-md-9 {
/* 860   */         -webkit-box-flex: 0;
/* 861   */         -ms-flex: 0 0 75%;
/* 862   */         flex: 0 0 75%;
/* 863   */         max-width: 75%;
/* 864   */     }
/* 865   */
/* 866   */     .col-md-10 {
/* 867   */         -webkit-box-flex: 0;
/* 868   */         -ms-flex: 0 0 83.3333333333%;
/* 869   */         flex: 0 0 83.3333333333%;
/* 870   */         max-width: 83.3333333333%;
/* 871   */     }
/* 872   */
/* 873   */     .col-md-11 {
/* 874   */         -webkit-box-flex: 0;
/* 875   */         -ms-flex: 0 0 91.6666666667%;
/* 876   */         flex: 0 0 91.6666666667%;
/* 877   */         max-width: 91.6666666667%;
/* 878   */     }
/* 879   */
/* 880   */     .col-md-12 {
/* 881   */         -webkit-box-flex: 0;
/* 882   */         -ms-flex: 0 0 100%;
/* 883   */         flex: 0 0 100%;
/* 884   */         max-width: 100%;
/* 885   */     }
/* 886   */ }
/* 887   */
/* 888   */ @media (min-width: 992px) {
/* 889   */     .col-lg-1 {
/* 890   */         -webkit-box-flex: 0;
/* 891   */         -ms-flex: 0 0 8.3333333333%;
/* 892   */         flex: 0 0 8.3333333333%;
/* 893   */         max-width: 8.3333333333%;
/* 894   */     }
/* 895   */
/* 896   */     .col-lg-2 {
/* 897   */         -webkit-box-flex: 0;
/* 898   */         -ms-flex: 0 0 16.6666666667%;
/* 899   */         flex: 0 0 16.6666666667%;
/* 900   */         max-width: 16.6666666667%;

/* app.css */

/* 901   */     }
/* 902   */
/* 903   */     .col-lg-3 {
/* 904   */         -webkit-box-flex: 0;
/* 905   */         -ms-flex: 0 0 25%;
/* 906   */         flex: 0 0 25%;
/* 907   */         max-width: 25%;
/* 908   */     }
/* 909   */
/* 910   */     .col-lg-4 {
/* 911   */         -webkit-box-flex: 0;
/* 912   */         -ms-flex: 0 0 33.3333333333%;
/* 913   */         flex: 0 0 33.3333333333%;
/* 914   */         max-width: 33.3333333333%;
/* 915   */     }
/* 916   */
/* 917   */     .col-lg-5 {
/* 918   */         -webkit-box-flex: 0;
/* 919   */         -ms-flex: 0 0 41.6666666667%;
/* 920   */         flex: 0 0 41.6666666667%;
/* 921   */         max-width: 41.6666666667%;
/* 922   */     }
/* 923   */
/* 924   */     .col-lg-6 {
/* 925   */         -webkit-box-flex: 0;
/* 926   */         -ms-flex: 0 0 50%;
/* 927   */         flex: 0 0 50%;
/* 928   */         max-width: 50%;
/* 929   */     }
/* 930   */
/* 931   */     .col-lg-7 {
/* 932   */         -webkit-box-flex: 0;
/* 933   */         -ms-flex: 0 0 58.3333333333%;
/* 934   */         flex: 0 0 58.3333333333%;
/* 935   */         max-width: 58.3333333333%;
/* 936   */     }
/* 937   */
/* 938   */     .col-lg-8 {
/* 939   */         -webkit-box-flex: 0;
/* 940   */         -ms-flex: 0 0 66.6666666667%;
/* 941   */         flex: 0 0 66.6666666667%;
/* 942   */         max-width: 66.6666666667%;
/* 943   */     }
/* 944   */
/* 945   */     .col-lg-9 {
/* 946   */         -webkit-box-flex: 0;
/* 947   */         -ms-flex: 0 0 75%;
/* 948   */         flex: 0 0 75%;
/* 949   */         max-width: 75%;
/* 950   */     }

/* app.css */

/* 951   */
/* 952   */     .col-lg-10 {
/* 953   */         -webkit-box-flex: 0;
/* 954   */         -ms-flex: 0 0 83.3333333333%;
/* 955   */         flex: 0 0 83.3333333333%;
/* 956   */         max-width: 83.3333333333%;
/* 957   */     }
/* 958   */
/* 959   */     .col-lg-11 {
/* 960   */         -webkit-box-flex: 0;
/* 961   */         -ms-flex: 0 0 91.6666666667%;
/* 962   */         flex: 0 0 91.6666666667%;
/* 963   */         max-width: 91.6666666667%;
/* 964   */     }
/* 965   */
/* 966   */     .col-lg-12 {
/* 967   */         -webkit-box-flex: 0;
/* 968   */         -ms-flex: 0 0 100%;
/* 969   */         flex: 0 0 100%;
/* 970   */         max-width: 100%;
/* 971   */     }
/* 972   */ }
/* 973   */
/* 974   */ @media (min-width: 1200px) {
/* 975   */     .col-xl-1 {
/* 976   */         -webkit-box-flex: 0;
/* 977   */         -ms-flex: 0 0 8.3333333333%;
/* 978   */         flex: 0 0 8.3333333333%;
/* 979   */         max-width: 8.3333333333%;
/* 980   */     }
/* 981   */
/* 982   */     .col-xl-2 {
/* 983   */         -webkit-box-flex: 0;
/* 984   */         -ms-flex: 0 0 16.6666666667%;
/* 985   */         flex: 0 0 16.6666666667%;
/* 986   */         max-width: 16.6666666667%;
/* 987   */     }
/* 988   */
/* 989   */     .col-xl-3 {
/* 990   */         -webkit-box-flex: 0;
/* 991   */         -ms-flex: 0 0 25%;
/* 992   */         flex: 0 0 25%;
/* 993   */         max-width: 25%;
/* 994   */     }
/* 995   */
/* 996   */     .col-xl-4 {
/* 997   */         -webkit-box-flex: 0;
/* 998   */         -ms-flex: 0 0 33.3333333333%;
/* 999   */         flex: 0 0 33.3333333333%;
/* 1000  */         max-width: 33.3333333333%;

/* app.css */

/* 1001  */     }
/* 1002  */
/* 1003  */     .col-xl-5 {
/* 1004  */         -webkit-box-flex: 0;
/* 1005  */         -ms-flex: 0 0 41.6666666667%;
/* 1006  */         flex: 0 0 41.6666666667%;
/* 1007  */         max-width: 41.6666666667%;
/* 1008  */     }
/* 1009  */
/* 1010  */     .col-xl-6 {
/* 1011  */         -webkit-box-flex: 0;
/* 1012  */         -ms-flex: 0 0 50%;
/* 1013  */         flex: 0 0 50%;
/* 1014  */         max-width: 50%;
/* 1015  */     }
/* 1016  */
/* 1017  */     .col-xl-7 {
/* 1018  */         -webkit-box-flex: 0;
/* 1019  */         -ms-flex: 0 0 58.3333333333%;
/* 1020  */         flex: 0 0 58.3333333333%;
/* 1021  */         max-width: 58.3333333333%;
/* 1022  */     }
/* 1023  */
/* 1024  */     .col-xl-8 {
/* 1025  */         -webkit-box-flex: 0;
/* 1026  */         -ms-flex: 0 0 66.6666666667%;
/* 1027  */         flex: 0 0 66.6666666667%;
/* 1028  */         max-width: 66.6666666667%;
/* 1029  */     }
/* 1030  */
/* 1031  */     .col-xl-9 {
/* 1032  */         -webkit-box-flex: 0;
/* 1033  */         -ms-flex: 0 0 75%;
/* 1034  */         flex: 0 0 75%;
/* 1035  */         max-width: 75%;
/* 1036  */     }
/* 1037  */
/* 1038  */     .col-xl-10 {
/* 1039  */         -webkit-box-flex: 0;
/* 1040  */         -ms-flex: 0 0 83.3333333333%;
/* 1041  */         flex: 0 0 83.3333333333%;
/* 1042  */         max-width: 83.3333333333%;
/* 1043  */     }
/* 1044  */
/* 1045  */     .col-xl-11 {
/* 1046  */         -webkit-box-flex: 0;
/* 1047  */         -ms-flex: 0 0 91.6666666667%;
/* 1048  */         flex: 0 0 91.6666666667%;
/* 1049  */         max-width: 91.6666666667%;
/* 1050  */     }

/* app.css */

/* 1051  */
/* 1052  */     .col-xl-12 {
/* 1053  */         -webkit-box-flex: 0;
/* 1054  */         -ms-flex: 0 0 100%;
/* 1055  */         flex: 0 0 100%;
/* 1056  */         max-width: 100%;
/* 1057  */     }
/* 1058  */ }
/* 1059  */
/* 1060  */ @media (min-width: 1440px) {
/* 1061  */     .col-xxl-1 {
/* 1062  */         -webkit-box-flex: 0;
/* 1063  */         -ms-flex: 0 0 8.3333333333%;
/* 1064  */         flex: 0 0 8.3333333333%;
/* 1065  */         max-width: 8.3333333333%;
/* 1066  */     }
/* 1067  */
/* 1068  */     .col-xxl-2 {
/* 1069  */         -webkit-box-flex: 0;
/* 1070  */         -ms-flex: 0 0 16.6666666667%;
/* 1071  */         flex: 0 0 16.6666666667%;
/* 1072  */         max-width: 16.6666666667%;
/* 1073  */     }
/* 1074  */
/* 1075  */     .col-xxl-3 {
/* 1076  */         -webkit-box-flex: 0;
/* 1077  */         -ms-flex: 0 0 25%;
/* 1078  */         flex: 0 0 25%;
/* 1079  */         max-width: 25%;
/* 1080  */     }
/* 1081  */
/* 1082  */     .col-xxl-4 {
/* 1083  */         -webkit-box-flex: 0;
/* 1084  */         -ms-flex: 0 0 33.3333333333%;
/* 1085  */         flex: 0 0 33.3333333333%;
/* 1086  */         max-width: 33.3333333333%;
/* 1087  */     }
/* 1088  */
/* 1089  */     .col-xxl-5 {
/* 1090  */         -webkit-box-flex: 0;
/* 1091  */         -ms-flex: 0 0 41.6666666667%;
/* 1092  */         flex: 0 0 41.6666666667%;
/* 1093  */         max-width: 41.6666666667%;
/* 1094  */     }
/* 1095  */
/* 1096  */     .col-xxl-6 {
/* 1097  */         -webkit-box-flex: 0;
/* 1098  */         -ms-flex: 0 0 50%;
/* 1099  */         flex: 0 0 50%;
/* 1100  */         max-width: 50%;

/* app.css */

/* 1101  */     }
/* 1102  */
/* 1103  */     .col-xxl-7 {
/* 1104  */         -webkit-box-flex: 0;
/* 1105  */         -ms-flex: 0 0 58.3333333333%;
/* 1106  */         flex: 0 0 58.3333333333%;
/* 1107  */         max-width: 58.3333333333%;
/* 1108  */     }
/* 1109  */
/* 1110  */     .col-xxl-8 {
/* 1111  */         -webkit-box-flex: 0;
/* 1112  */         -ms-flex: 0 0 66.6666666667%;
/* 1113  */         flex: 0 0 66.6666666667%;
/* 1114  */         max-width: 66.6666666667%;
/* 1115  */     }
/* 1116  */
/* 1117  */     .col-xxl-9 {
/* 1118  */         -webkit-box-flex: 0;
/* 1119  */         -ms-flex: 0 0 75%;
/* 1120  */         flex: 0 0 75%;
/* 1121  */         max-width: 75%;
/* 1122  */     }
/* 1123  */
/* 1124  */     .col-xxl-10 {
/* 1125  */         -webkit-box-flex: 0;
/* 1126  */         -ms-flex: 0 0 83.3333333333%;
/* 1127  */         flex: 0 0 83.3333333333%;
/* 1128  */         max-width: 83.3333333333%;
/* 1129  */     }
/* 1130  */
/* 1131  */     .col-xxl-11 {
/* 1132  */         -webkit-box-flex: 0;
/* 1133  */         -ms-flex: 0 0 91.6666666667%;
/* 1134  */         flex: 0 0 91.6666666667%;
/* 1135  */         max-width: 91.6666666667%;
/* 1136  */     }
/* 1137  */
/* 1138  */     .col-xxl-12 {
/* 1139  */         -webkit-box-flex: 0;
/* 1140  */         -ms-flex: 0 0 100%;
/* 1141  */         flex: 0 0 100%;
/* 1142  */         max-width: 100%;
/* 1143  */     }
/* 1144  */ }
/* 1145  */
/* 1146  */ .row-reverse {
/* 1147  */     flex-direction: row-reverse !important;
/* 1148  */ }
/* 1149  */ :root {
/* 1150  */     --white: #fff;

/* app.css */

/* 1151  */     --black: #000;
/* 1152  */     --orange: rgb(243, 112, 35);
/* 1153  */     --lorange: rgba(243, 112, 35, 0.05);
/* 1154  */     --green: #52C234;
/* 1155  */     --grey:#2c2c2c;
/* 1156  */     --lblack: rgba(0, 0, 0, 0.4);
/* 1157  */     --dblack: rgba(255, 255, 255, 0.6);
/* 1158  */     --border: #686868;
/* 1159  */ }
/* 1160  */
/* 1161  */ b {
/* 1162  */     font-weight: 700;
/* 1163  */ }
/* 1164  */ .ml-space {
/* 1165  */     margin: 0 0 0 auto;
/* 1166  */ }
/* 1167  */
/* 1168  */ h1, h2.big {
/* 1169  */     color: var(--white);
/* 1170  */     font-weight: 800;
/* 1171  */     font-size: 3rem;
/* 1172  */     line-height: 4.7rem;
/* 1173  */     margin-bottom: 0.5rem;
/* 1174  */ }
/* 1175  */
/* 1176  */ @media (min-width: 768px) {
/* 1177  */     h1, h2.big {
/* 1178  */         font-size: 4rem;
/* 1179  */         line-height: 5.7rem;
/* 1180  */         margin-bottom: 1rem;
/* 1181  */     }
/* 1182  */ }
/* 1183  */
/* 1184  */ @media (min-width: 992px) {
/* 1185  */     h1, h2.big {
/* 1186  */         font-size: 5rem;
/* 1187  */         line-height: 6.7rem;
/* 1188  */         margin-bottom: 1.5rem;
/* 1189  */     }
/* 1190  */ }
/* 1191  */
/* 1192  */ @media (min-width: 1200px) {
/* 1193  */     h1, h2.big {
/* 1194  */         font-size: 6rem;
/* 1195  */         line-height: 7.7rem;
/* 1196  */         margin-bottom: 2rem;
/* 1197  */     }
/* 1198  */ }
/* 1199  */ @media (min-width: 1441px) {
/* 1200  */     h1, h2.big {

/* app.css */

/* 1201  */         font-size: 7rem;
/* 1202  */         line-height: 8.7rem;
/* 1203  */         margin-bottom: 2.5rem;
/* 1204  */     }
/* 1205  */ }
/* 1206  */ @media (min-width: 1601px) {
/* 1207  */     h1, h2.big {
/* 1208  */         font-size: 8rem;
/* 1209  */         line-height: 9.7rem;
/* 1210  */         margin-bottom: 3rem;
/* 1211  */     }
/* 1212  */ }
/* 1213  */
/* 1214  */ h2,h1.small {
/* 1215  */     color: var(--black);
/* 1216  */     font-weight: 800;
/* 1217  */     font-size: 2.6rem;
/* 1218  */     line-height: 3.6rem;
/* 1219  */     margin-bottom: 0.5rem;
/* 1220  */ }
/* 1221  */
/* 1222  */ @media (min-width: 768px) {
/* 1223  */     h2,h1.small {
/* 1224  */         font-size: 3.2rem;
/* 1225  */         line-height: 3.8rem;
/* 1226  */         margin-bottom: 0.7rem;
/* 1227  */     }
/* 1228  */ }
/* 1229  */
/* 1230  */ @media (min-width: 992px) {
/* 1231  */     h2,h1.small {
/* 1232  */         font-size: 3.9rem;
/* 1233  */         line-height: 4.5rem;
/* 1234  */         margin-bottom: 1rem;
/* 1235  */     }
/* 1236  */ }
/* 1237  */ @media (min-width: 1200px) {
/* 1238  */     h2,h1.small {
/* 1239  */         font-size: 4.4rem;
/* 1240  */         line-height: 5.7rem;
/* 1241  */         margin-bottom: 1.3rem;
/* 1242  */     }
/* 1243  */ }
/* 1244  */ @media (min-width: 1441px) {
/* 1245  */     h2,h1.small {
/* 1246  */         font-size: 5.4rem;
/* 1247  */         line-height: 6.7rem;
/* 1248  */         margin-bottom: 1.8rem;
/* 1249  */     }
/* 1250  */ }

/* app.css */

/* 1251  */ @media (min-width: 1601px) {
/* 1252  */     h2,h1.small {
/* 1253  */         font-size: 6.4rem;
/* 1254  */         line-height: 7.7rem;
/* 1255  */         margin-bottom: 2rem;
/* 1256  */     }
/* 1257  */ }
/* 1258  */
/* 1259  */ h3 {
/* 1260  */     font-weight: 700;
/* 1261  */     font-size: 2rem;
/* 1262  */     line-height: 2.4rem;
/* 1263  */     color: var(--white);
/* 1264  */     margin-bottom: 10px;
/* 1265  */ }
/* 1266  */
/* 1267  */ @media (min-width: 768px) {
/* 1268  */     h3 {
/* 1269  */         font-size: 2.1rem;
/* 1270  */         line-height: 2.6rem;
/* 1271  */         margin-bottom: 16px;
/* 1272  */     }
/* 1273  */ }
/* 1274  */
/* 1275  */ @media (min-width: 992px) {
/* 1276  */     h3 {
/* 1277  */         font-size: 2.6rem;
/* 1278  */         line-height: 3.2rem;
/* 1279  */     }
/* 1280  */ }
/* 1281  */
/* 1282  */ @media (min-width: 1200px) {
/* 1283  */     h3 {
/* 1284  */         font-size: 3.1rem;
/* 1285  */         line-height: 3.5rem;
/* 1286  */     }
/* 1287  */ }
/* 1288  */
/* 1289  */ @media (min-width: 1441px) {
/* 1290  */     h3 {
/* 1291  */         font-size: 3.6rem;
/* 1292  */         line-height: 4rem;
/* 1293  */     }
/* 1294  */ }
/* 1295  */
/* 1296  */
/* 1297  */
/* 1298  */ h4 {
/* 1299  */     font-size: 1.8rem;
/* 1300  */     line-height: 2.8rem;

/* app.css */

/* 1301  */     color: var(--black);
/* 1302  */     font-weight: 700;
/* 1303  */     margin-bottom: 0.6rem;
/* 1304  */ }
/* 1305  */
/* 1306  */ @media (min-width: 768px) {
/* 1307  */     h4 {
/* 1308  */         font-size: 2rem;
/* 1309  */         line-height: 3rem;
/* 1310  */     }
/* 1311  */ }
/* 1312  */
/* 1313  */ @media (min-width: 992px) {
/* 1314  */     h4 {
/* 1315  */         font-size: 2.2rem;
/* 1316  */         line-height: 3.2rem;
/* 1317  */     }
/* 1318  */ }
/* 1319  */
/* 1320  */ @media (min-width: 1200px) {
/* 1321  */     h4 {
/* 1322  */         font-size: 2.4rem;
/* 1323  */         line-height: 3.4rem;
/* 1324  */     }
/* 1325  */ }
/* 1326  */
/* 1327  */ h5 {
/* 1328  */     font-size: 1.5rem;
/* 1329  */     line-height: 2rem;
/* 1330  */     color: var(--white);
/* 1331  */     font-weight: 700;
/* 1332  */     margin-bottom: 0.6rem;
/* 1333  */ }
/* 1334  */
/* 1335  */ @media (min-width: 768px) {
/* 1336  */     h5 {
/* 1337  */         font-size: 1.7rem;
/* 1338  */         line-height: 2.2rem;
/* 1339  */     }
/* 1340  */ }
/* 1341  */
/* 1342  */ @media (min-width: 992px) {
/* 1343  */     h5 {
/* 1344  */         font-size: 2rem;
/* 1345  */         line-height: 3rem;
/* 1346  */         margin-bottom: 1rem;
/* 1347  */     }
/* 1348  */ }
/* 1349  */
/* 1350  */ h6 {

/* app.css */

/* 1351  */     font-size: 1.4rem;
/* 1352  */     line-height: 2.6rem;
/* 1353  */     color: var(--white);
/* 1354  */     font-weight: 700;
/* 1355  */ }
/* 1356  */
/* 1357  */ @media (min-width: 768px) {
/* 1358  */     h6 {
/* 1359  */         font-size: 1.5rem;
/* 1360  */         line-height: 3rem;
/* 1361  */     }
/* 1362  */ }
/* 1363  */
/* 1364  */ @media (min-width: 992px) {
/* 1365  */     h6 {
/* 1366  */         font-size: 1.6rem;
/* 1367  */         line-height: 3.4rem;
/* 1368  */     }
/* 1369  */ }
/* 1370  */
/* 1371  */ p {
/* 1372  */     font-weight: 400;
/* 1373  */     color: var(--black);
/* 1374  */     font-size: 1.4rem;
/* 1375  */     line-height: 2rem;
/* 1376  */     margin-bottom: 0.8rem;
/* 1377  */ }
/* 1378  */
/* 1379  */ @media (min-width: 768px) {
/* 1380  */     p {
/* 1381  */         font-size: 1.6rem;
/* 1382  */         line-height: 2.3rem;
/* 1383  */     }
/* 1384  */ }
/* 1385  */
/* 1386  */ @media (min-width: 992px) {
/* 1387  */     p {
/* 1388  */         font-size: 1.8rem;
/* 1389  */         line-height: 2.5rem;
/* 1390  */     }
/* 1391  */ }
/* 1392  */
/* 1393  */ @media (min-width: 1200px) {
/* 1394  */     p {
/* 1395  */         font-size: 2.0rem;
/* 1396  */         line-height: 2.7rem;
/* 1397  */     }
/* 1398  */ }
/* 1399  */
/* 1400  */ @media (min-width: 1441px) {

/* app.css */

/* 1401  */     p {
/* 1402  */         font-size: 2.4rem;
/* 1403  */         line-height: 3.3rem;
/* 1404  */     }
/* 1405  */ }
/* 1406  */
/* 1407  */
/* 1408  */ ul {
/* 1409  */     list-style-type: none;
/* 1410  */     list-style: none;
/* 1411  */     margin: 0 0 10px;
/* 1412  */     padding: 0;
/* 1413  */ }
/* 1414  */
/* 1415  */ ul li {
/* 1416  */     list-style-type: none;
/* 1417  */     list-style: none;
/* 1418  */     position: relative;
/* 1419  */     font-weight: 400;
/* 1420  */     color: var(--lblack);
/* 1421  */     font-size: 1.4rem;
/* 1422  */     line-height: 2.2rem;
/* 1423  */     padding: 0;
/* 1424  */     margin: 0 0 1rem;
/* 1425  */ }
/* 1426  */
/* 1427  */ @media (min-width: 768px) {
/* 1428  */     ul li {
/* 1429  */         margin: 0 0 1.4rem;
/* 1430  */         line-height: 2.8rem;
/* 1431  */     }
/* 1432  */ }
/* 1433  */
/* 1434  */ @media (min-width: 992px) {
/* 1435  */     ul li {
/* 1436  */         font-size: 1.6rem;
/* 1437  */         line-height: 2.2rem;
/* 1438  */         margin: 0 0 0.8rem;
/* 1439  */         padding: 0;
/* 1440  */     }
/* 1441  */ }
/* 1442  */
/* 1443  */ ol {
/* 1444  */     list-style-type: decimal;
/* 1445  */     margin: 0;
/* 1446  */     padding: 0 0 0 15px;
/* 1447  */ }
/* 1448  */
/* 1449  */ ol li {
/* 1450  */     display: list-item;

/* app.css */

/* 1451  */     position: relative;
/* 1452  */     font-weight: 400;
/* 1453  */     color: var(--white);
/* 1454  */     line-height: 28px;
/* 1455  */     font-size: 16px;
/* 1456  */     position: relative;
/* 1457  */     padding-left: 5px;
/* 1458  */ }
/* 1459  */
/* 1460  */ .pagination {
/* 1461  */     width: 100%;
/* 1462  */     border-radius: 0px;
/* 1463  */     display: flex;
/* 1464  */ }
/* 1465  */
/* 1466  */ .pagination li {
/* 1467  */     padding: 1rem;
/* 1468  */     margin: 0;
/* 1469  */     padding-right: 0;
/* 1470  */     color: var(--white);
/* 1471  */     font-size: 20px;
/* 1472  */     line-height: 2rem;
/* 1473  */ }
/* 1474  */
/* 1475  */ .pagination li:after {
/* 1476  */     content: "|";
/* 1477  */     right: 0;
/* 1478  */     margin-left: 10px;
/* 1479  */ }
/* 1480  */
/* 1481  */ .pagination li:first-child::after,
/* 1482  */ .pagination li:last-child::after,
/* 1483  */ .pagination li:nth-last-child(2)::after,
/* 1484  */ .pagination li:nth-last-child(3)::after {
/* 1485  */     display: none;
/* 1486  */ }
/* 1487  */
/* 1488  */ .pagination li:last-child {
/* 1489  */     color: var(--white);
/* 1490  */ }
/* 1491  */
/* 1492  */ .pagination .active,
/* 1493  */ .pagination a:hover {
/* 1494  */     color: var(--white);
/* 1495  */ }
/* 1496  */ .slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
/* 1497  */ /*# sourceMappingURL=slick.min.css.map */
/* 1498  */
/* 1499  */ .header {
/* 1500  */   position: sticky;

/* app.css */

/* 1501  */   top: 0;
/* 1502  */   left: 0;
/* 1503  */   width: 100%;
/* 1504  */   transition: transform 0.3s ease-in-out;
/* 1505  */   z-index: 1000;
/* 1506  */ }
/* 1507  */   .header .row {
/* 1508  */     justify-content: space-between;
/* 1509  */   }
/* 1510  */
/* 1511  */ .header .col-12 {
/* 1512  */   text-align: center;
/* 1513  */ }
/* 1514  */
/* 1515  */ .header .col-12.text-right {
/* 1516  */   padding-top: 10px;
/* 1517  */   text-align: center;
/* 1518  */ }
/* 1519  */
/* 1520  */ .header__logo-col {
/* 1521  */   text-align: left;
/* 1522  */ }
/* 1523  */
/* 1524  */ .header__menu-grid .header__menu-cont {
/* 1525  */   display: none;
/* 1526  */ }
/* 1527  */
/* 1528  */ .header__logo-col .custom-logo {
/* 1529  */   width: 160px;
/* 1530  */ }
/* 1531  */
/* 1532  */ .header__space {
/* 1533  */   width: 100%;
/* 1534  */ }
/* 1535  */
/* 1536  */ .header__fixed {
/* 1537  */   background: var(--white);
/* 1538  */   width: 100%;
/* 1539  */   position: initial;
/* 1540  */   top: 0;
/* 1541  */   left: 0;
/* 1542  */   box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 1543  */ }
/* 1544  */
/* 1545  */ .header__fixed>.container {
/* 1546  */   padding: 15px;
/* 1547  */ }
/* 1548  */
/* 1549  */ .header__contact-details-cont {
/* 1550  */   text-align: right;

/* app.css */

/* 1551  */ }
/* 1552  */
/* 1553  */ .header__contact-details-inner-cont {
/* 1554  */   display: none;
/* 1555  */ }
/* 1556  */
/* 1557  */ .header__burger {
/* 1558  */   display: block;
/* 1559  */   border-radius: 0;
/* 1560  */   background: var(--white);
/* 1561  */   box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 1562  */   cursor: pointer;
/* 1563  */   float: right;
/* 1564  */   position: relative;
/* 1565  */   z-index: 10;
/* 1566  */   height: 40px;
/* 1567  */   width: 40px;
/* 1568  */ }
/* 1569  */
/* 1570  */ .header__burger:hover {
/* 1571  */   background-color: var(--orange);
/* 1572  */ }
/* 1573  */
/* 1574  */ .header__burger:hover .bars .line {
/* 1575  */   stroke: var(--white);
/* 1576  */ }
/* 1577  */
/* 1578  */ .header__mega #site-navigation {
/* 1579  */   display: flex;
/* 1580  */   align-items: start;
/* 1581  */   height: 100%;
/* 1582  */   overflow-y: auto;
/* 1583  */   overflow-x: hidden;
/* 1584  */   z-index: 1;
/* 1585  */   margin-bottom: 10px;
/* 1586  */ }
/* 1587  */ .header__mega #site-navigation::-webkit-scrollbar {
/* 1588  */   width: 4px;
/* 1589  */ }
/* 1590  */
/* 1591  */ .header__mega #site-navigation::-webkit-scrollbar-track {
/* 1592  */   box-shadow: inset 0 0 1px 4px rgba(255, 255, 255, 15%);
/* 1593  */   border-radius: 0px;
/* 1594  */ }
/* 1595  */
/* 1596  */ .header__mega #site-navigation::-webkit-scrollbar-thumb {
/* 1597  */   background: var(--orange);
/* 1598  */   border-radius: 0px;
/* 1599  */ }
/* 1600  */

/* app.css */

/* 1601  */ .header__menu-cont {
/* 1602  */   clear: both;
/* 1603  */   position: relative;
/* 1604  */   margin: 0 auto;
/* 1605  */ }
/* 1606  */
/* 1607  */ .header .main-navigation .menu-menu-1-container {
/* 1608  */   position: fixed;
/* 1609  */   top: 0;
/* 1610  */   overflow: auto;
/* 1611  */   right: 0;
/* 1612  */   height: 100vh;
/* 1613  */   padding-top: 50px;
/* 1614  */   background: #b09a51;
/* 1615  */ }
/* 1616  */
/* 1617  */ .header__menu-bg {
/* 1618  */   position: fixed;
/* 1619  */   display: none;
/* 1620  */   top: 0;
/* 1621  */   right: 0;
/* 1622  */ }
/* 1623  */
/* 1624  */ .active .header__menu-close,
/* 1625  */ .active .header__menu-bg {
/* 1626  */   display: block;
/* 1627  */ }
/* 1628  */
/* 1629  */ .header__menu-close {
/* 1630  */   width: 54px;
/* 1631  */   height: 54px;
/* 1632  */   position: relative;
/* 1633  */   cursor: pointer;
/* 1634  */   box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 1635  */   background: var(--white);
/* 1636  */ }
/* 1637  */
/* 1638  */ .header__menu-close::before {
/* 1639  */   content: "";
/* 1640  */   position: absolute;
/* 1641  */   top: 0;
/* 1642  */   right: 0;
/* 1643  */   width: 0;
/* 1644  */   height: 0;
/* 1645  */   border-style: solid;
/* 1646  */   border-width: 0 22px 22px 0;
/* 1647  */   border-color: transparent #F37023 transparent transparent;
/* 1648  */ }
/* 1649  */
/* 1650  */ .header__menu-bg {

/* app.css */

/* 1651  */   background: rgba(0, 0, 0, 0.5);
/* 1652  */   width: 100vw;
/* 1653  */   height: 100vh;
/* 1654  */ }
/* 1655  */
/* 1656  */ .header ul {
/* 1657  */   float: right;
/* 1658  */   clear: both;
/* 1659  */   margin: 0;
/* 1660  */   padding: 10px 10px;
/* 1661  */   list-style: none;
/* 1662  */   list-style-type: none;
/* 1663  */   border-radius: 0px;
/* 1664  */   height: 100%;
/* 1665  */ }
/* 1666  */
/* 1667  */ .header ul li {
/* 1668  */   float: left;
/* 1669  */   margin: 0 16px;
/* 1670  */   padding: 0;
/* 1671  */   list-style: none;
/* 1672  */   list-style-type: none;
/* 1673  */   width: 100%;
/* 1674  */ }
/* 1675  */
/* 1676  */ .header ul li:before {
/* 1677  */   display: none;
/* 1678  */ }
/* 1679  */
/* 1680  */ .header ul#primary-menu li a {
/* 1681  */   font-weight: 400;
/* 1682  */   color: var(--black);
/* 1683  */   font-size: 1.4rem;
/* 1684  */   font-weight: 500;
/* 1685  */   display: inline-block;
/* 1686  */   line-height: 18px;
/* 1687  */   padding: 5px;
/* 1688  */   text-transform: capitalize;
/* 1689  */   width: 100%;
/* 1690  */ }
/* 1691  */
/* 1692  */
/* 1693  */
/* 1694  */
/* 1695  */ .header ul#primary-menu li.current-menu-item a {
/* 1696  */   color: var(--orange);
/* 1697  */ }
/* 1698  */
/* 1699  */ .header ul#primary-menu li a {
/* 1700  */   color: var(--black);

/* app.css */

/* 1701  */   font-weight: 500;
/* 1702  */   transition: all 0.3s ease-in-out;
/* 1703  */ }
/* 1704  */
/* 1705  */
/* 1706  */ .header ul#primary-menu li a:hover {
/* 1707  */   color: var(--orange);
/* 1708  */ }
/* 1709  */
/* 1710  */
/* 1711  */ .header ul li.menu-number {
/* 1712  */   position: relative;
/* 1713  */ }
/* 1714  */
/* 1715  */ .header ul li.menu-number a {
/* 1716  */   padding: 10px 10px 10px 32px;
/* 1717  */   position: relative;
/* 1718  */ }
/* 1719  */
/* 1720  */ .header ul li.menu-number a::before {
/* 1721  */   content: "\f095";
/* 1722  */   position: absolute;
/* 1723  */   width: 24px;
/* 1724  */   height: 24px;
/* 1725  */   left: 0;
/* 1726  */   top: 50%;
/* 1727  */   font-size: 24px;
/* 1728  */   transform: translateY(-50%);
/* 1729  */   font-family: 'FontAwesome';
/* 1730  */ }
/* 1731  */
/* 1732  */ .header__mega--footer {
/* 1733  */   padding: 35px 0;
/* 1734  */   background: #FEF8F4;
/* 1735  */   color: #fff;
/* 1736  */   position: relative;
/* 1737  */   z-index: 99;
/* 1738  */   display: none;
/* 1739  */ }
/* 1740  */
/* 1741  */ .header__mega--footer-grid-box {
/* 1742  */   display: flex;
/* 1743  */   align-items: center;
/* 1744  */ }
/* 1745  */
/* 1746  */ .header__mega--footer-grid-box-cont {
/* 1747  */   margin-left: 10px;
/* 1748  */   text-align: left;
/* 1749  */   max-width: calc(100% - 56px);
/* 1750  */   width: 100%;

/* app.css */

/* 1751  */ }
/* 1752  */
/* 1753  */ .header__mega--footer-grid-box-img {
/* 1754  */   width: 46px;
/* 1755  */   height: 46px;
/* 1756  */ }
/* 1757  */
/* 1758  */ .header__mega--footer-grid-box-img img {
/* 1759  */   width: 100%;
/* 1760  */   height: 100%;
/* 1761  */ }
/* 1762  */
/* 1763  */ .header__mega--footer-grid-box-cont-head {
/* 1764  */   font-size: 16px;
/* 1765  */   line-height: 22px;
/* 1766  */   font-weight: 400;
/* 1767  */   color: #000000;
/* 1768  */   display: block;
/* 1769  */   margin: 0px;
/* 1770  */ }
/* 1771  */
/* 1772  */ .header__mega--footer-grid-box-cont-link {
/* 1773  */   font-size: 24px;
/* 1774  */   line-height: 30px;
/* 1775  */   font-weight: 500;
/* 1776  */   color: var(--black);
/* 1777  */   display: block;
/* 1778  */ }
/* 1779  */
/* 1780  */ .header__mega .container {
/* 1781  */   padding-left: 0;
/* 1782  */   padding-right: 0;
/* 1783  */   padding-top: 0;
/* 1784  */   padding-bottom: 0;
/* 1785  */ }
/* 1786  */
/* 1787  */ .body-header {
/* 1788  */   overflow: hidden;
/* 1789  */ }
/* 1790  */
/* 1791  */ .header_mega_bg_black_color {
/* 1792  */   background-color: #000000;
/* 1793  */   width: 100%;
/* 1794  */   height: 100%;
/* 1795  */   position: absolute;
/* 1796  */   z-index: 0;
/* 1797  */   left: 0;
/* 1798  */   top: 0;
/* 1799  */ }
/* 1800  */

/* app.css */

/* 1801  */ .header__mega--head-left {
/* 1802  */   max-width: 100%;
/* 1803  */   width: 100%;
/* 1804  */   padding-left: 210px;
/* 1805  */   padding-right: 40px;
/* 1806  */   padding: 10px 30px 10px 60px;
/* 1807  */   position: relative;
/* 1808  */   display: flex;
/* 1809  */   flex-direction: column;
/* 1810  */ }
/* 1811  */
/* 1812  */ .header__mega--head-left .patner_with_us{
/* 1813  */     display: none;
/* 1814  */ }
/* 1815  */
/* 1816  */ .header__mega--head-left .patner_with_us {
/* 1817  */   z-index: 11;
/* 1818  */   position: relative;
/* 1819  */   width: 210px;
/* 1820  */   padding-top: 15px;
/* 1821  */ }
/* 1822  */
/* 1823  */ .header__mega--head-left .patner_with_us:before {
/* 1824  */   content: "";
/* 1825  */   position: absolute;
/* 1826  */   top: 0px;
/* 1827  */   right: 15px;
/* 1828  */   background-image: url('/wp-content/themes/brainstream/images/white_logo.svg');
/* 1829  */   background-size: 65px;
/* 1830  */   width: 65px;
/* 1831  */   height: 65px;
/* 1832  */   background-repeat: no-repeat;
/* 1833  */   z-index: -1;
/* 1834  */ }
/* 1835  */
/* 1836  */ .header__mega--head-left .patner_with_us p {
/* 1837  */   color: var(--white);
/* 1838  */   font-size: 14px;
/* 1839  */   line-height: 10px;
/* 1840  */ }
/* 1841  */
/* 1842  */ .header__mega--head-left .patner_with_us h3 {
/* 1843  */   color: var(--white);
/* 1844  */   font-size: 22px;
/* 1845  */   line-height: 30px;
/* 1846  */ }
/* 1847  */
/* 1848  */ .header__mega--head-left .mega-header-nav {
/* 1849  */   height: 100%;
/* 1850  */   width: 100%;

/* app.css */

/* 1851  */ }
/* 1852  */
/* 1853  */ .header__mega--head-left .mega-header-nav::-webkit-scrollbar {
/* 1854  */   width: 6px;
/* 1855  */ }
/* 1856  */
/* 1857  */ .header__mega--head-left .mega-header-nav::-webkit-scrollbar-track {
/* 1858  */   box-shadow: inset 0 0 1px 3px #ffffff1a;
/* 1859  */   border-radius: 10px;
/* 1860  */ }
/* 1861  */
/* 1862  */ .header__mega--head-left .mega-header-nav::-webkit-scrollbar-thumb {
/* 1863  */   background: var(--orange);
/* 1864  */   border-radius: 10px;
/* 1865  */ }
/* 1866  */
/* 1867  */ .header__mega--head {
/* 1868  */   display: flex;
/* 1869  */   height: 100vh;
/* 1870  */   flex-direction: row-reverse;
/* 1871  */ }
/* 1872  */
/* 1873  */ .header__mega--head-right {
/* 1874  */   width: 0%;
/* 1875  */   padding: 31px 210px 60px 40px;
/* 1876  */   position: relative;
/* 1877  */   display: none;
/* 1878  */ }
/* 1879  */
/* 1880  */ .header__mega--list {
/* 1881  */   transform: translateY(-50px);
/* 1882  */   opacity: 0;
/* 1883  */   visibility: hidden;
/* 1884  */   transition: all 0.3s;
/* 1885  */ }
/* 1886  */
/* 1887  */ .header__mega.active .header__mega--list {
/* 1888  */   transform: translateY(0px);
/* 1889  */   opacity: 1;
/* 1890  */   visibility: visible;
/* 1891  */   transition: all 0.3s;
/* 1892  */   transition-delay: 0.3s;
/* 1893  */   height: 100%;
/* 1894  */ }
/* 1895  */
/* 1896  */
/* 1897  */ .header__mega--head-left ul#mega-header {
/* 1898  */   width: 100%;
/* 1899  */   display: block !important;
/* 1900  */   height: 100%;

/* app.css */

/* 1901  */   float: left;
/* 1902  */ }
/* 1903  */
/* 1904  */
/* 1905  */ .header__mega .header__mega--head-left ul#mega-header li {
/* 1906  */   width: 100%;
/* 1907  */   margin: 0 0 15px;
/* 1908  */   transform: translateY(0px);
/* 1909  */   transition: all 0.3s;
/* 1910  */   opacity: 0;
/* 1911  */   visibility: hidden;
/* 1912  */   transition-delay: -0.3s;
/* 1913  */ }
/* 1914  */
/* 1915  */ .header__mega.active .header__mega--head-left ul#mega-header li {
/* 1916  */   transform: translateY(20px);
/* 1917  */   transition: all 0.3s;
/* 1918  */   opacity: 1;
/* 1919  */   visibility: visible;
/* 1920  */   transition-delay: 0.3s;
/* 1921  */ }
/* 1922  */
/* 1923  */ .header__mega .mega_sub_menu a:before {
/* 1924  */   content: none;
/* 1925  */   position: absolute;
/* 1926  */   border-width: 10px;
/* 1927  */   border-color: transparent white transparent transparent;
/* 1928  */   right: -1px;
/* 1929  */   z-index: 1000;
/* 1930  */   border-style: solid;
/* 1931  */   transform: translateX(10px);
/* 1932  */   transition: transform 0.3s;
/* 1933  */ }
/* 1934  */
/* 1935  */ .header__mega .mega_sub_menu.active a:before {
/* 1936  */   transform: translateX(0px);
/* 1937  */   transition: transform 0.3s;
/* 1938  */ }
/* 1939  */
/* 1940  */ .header__mega--head-left ul#mega-header li a {
/* 1941  */   padding: 0;
/* 1942  */   font-size: 18px;
/* 1943  */   line-height: 24px;
/* 1944  */   font-weight: 700;
/* 1945  */   color: var(--white);
/* 1946  */ }
/* 1947  */
/* 1948  */ .header__mega--head-left ul#mega-header li.active a {
/* 1949  */   color: var(--orange);
/* 1950  */ }

/* app.css */

/* 1951  */
/* 1952  */ .header__mega--head-left ul#mega-header li ul.bs_sub_menu {
/* 1953  */   display: block !important;
/* 1954  */   float: left;
/* 1955  */   padding: 20px 0 0 0;
/* 1956  */ }
/* 1957  */
/* 1958  */ .header__mega--head-left ul#mega-header li a:hover {
/* 1959  */   color: var(--orange);
/* 1960  */ }
/* 1961  */
/* 1962  */ .header__mega--head-left ul#mega-header li:last-child {
/* 1963  */   margin: 0;
/* 1964  */ }
/* 1965  */
/* 1966  */ .header__mega {
/* 1967  */   position: fixed;
/* 1968  */   top: 0;
/* 1969  */   background: #fff;
/* 1970  */   width: 100%;
/* 1971  */   display: block;
/* 1972  */   right: -100%;
/* 1973  */   max-width: 300px;
/* 1974  */   transition: all 0.3s;
/* 1975  */   height: 100%;
/* 1976  */ }
/* 1977  */
/* 1978  */ .header__mega.active {
/* 1979  */   display: block;
/* 1980  */   transition: all 0.3s;
/* 1981  */   right: 0%;
/* 1982  */ }
/* 1983  */
/* 1984  */ /* **************************** */
/* 1985  */
/* 1986  */ .header__menu-cont .bars {
/* 1987  */   width: 40px;
/* 1988  */   height: 40px;
/* 1989  */   cursor: pointer;
/* 1990  */ }
/* 1991  */
/* 1992  */ .header__menu-cont .bars .line {
/* 1993  */   fill: none;
/* 1994  */   stroke: #000;
/* 1995  */   stroke-width: 5px;
/* 1996  */   stroke-linecap: square;
/* 1997  */   transition: none
/* 1998  */ }
/* 1999  */
/* 2000  */ .header__menu-cont .bars .line.top {

/* app.css */

/* 2001  */   stroke-dasharray: 40 172;
/* 2002  */ }
/* 2003  */
/* 2004  */ .header__menu-cont .bars .line.middle {
/* 2005  */   stroke-dasharray: 40 111;
/* 2006  */ }
/* 2007  */
/* 2008  */ .header__menu-cont .bars .line.bottom {
/* 2009  */   stroke-dasharray: 40 172;
/* 2010  */ }
/* 2011  */
/* 2012  */ .header__menu-cont.active .bars .top {
/* 2013  */   stroke-dashoffset: -132px;
/* 2014  */ }
/* 2015  */
/* 2016  */ .header__menu-cont.active .bars .middle {
/* 2017  */   stroke-dashoffset: -71px;
/* 2018  */ }
/* 2019  */
/* 2020  */ .header__menu-cont.active .bars .bottom {
/* 2021  */   stroke-dashoffset: -132px;
/* 2022  */ }
/* 2023  */
/* 2024  */ /* ************************ */
/* 2025  */
/* 2026  */ .header__mega--head-left .menu-mega-header-container,
/* 2027  */ .header__mega--head-left .mega-header-nav {
/* 2028  */   float: left;
/* 2029  */ }
/* 2030  */
/* 2031  */ .header__mega--list-inner {
/* 2032  */   display: none;
/* 2033  */ }
/* 2034  */
/* 2035  */ .header__mega--list-inner.active {
/* 2036  */   display: block;
/* 2037  */ }
/* 2038  */
/* 2039  */ .header__mega--head-left ul#mega-header li ul.bs_sub_menu span {
/* 2040  */   font-size: 18px;
/* 2041  */   line-height: 24px;
/* 2042  */   color: var(--white);
/* 2043  */   display: block;
/* 2044  */   font-weight: 700;
/* 2045  */   margin: 20px 0;
/* 2046  */
/* 2047  */ }
/* 2048  */
/* 2049  */ .header__mega--head-left ul#mega-header li ul.bs_sub_menu li {
/* 2050  */   padding-left: 20px;

/* app.css */

/* 2051  */   position: relative;
/* 2052  */ }
/* 2053  */
/* 2054  */ .header__mega--head-left ul#mega-header li ul.bs_sub_menu li:after {
/* 2055  */   content: "";
/* 2056  */   position: absolute;
/* 2057  */   width: 6px;
/* 2058  */   height: 2px;
/* 2059  */   background: rgba(255, 255, 255, 60%);
/* 2060  */   left: 0;
/* 2061  */   top: 10px;
/* 2062  */ }
/* 2063  */
/* 2064  */ .header__mega--head-left ul#mega-header li ul.bs_sub_menu li a {
/* 2065  */   font-weight: 400;
/* 2066  */   font-size: 16px;
/* 2067  */   line-height: 22px;
/* 2068  */   color: rgba(255, 255, 255, 60%);
/* 2069  */ }
/* 2070  */
/* 2071  */ .header__mega--head-left ul#mega-header li.mega_sub_menu {
/* 2072  */   position: relative;
/* 2073  */ }
/* 2074  */
/* 2075  */ .header__mega--head-left .mega-header-nav .header__mega--head-partner-logo {
/* 2076  */   width: 250px;
/* 2077  */ }
/* 2078  */
/* 2079  */ .header__mega--head-left ul#mega-header li ul.bs_sub_menu span:first-child {
/* 2080  */   margin-top: 0;
/* 2081  */ }
/* 2082  */
/* 2083  */ .header__fixed .header__burger::before {
/* 2084  */   content: "";
/* 2085  */   position: absolute;
/* 2086  */   top: 0;
/* 2087  */   right: 0;
/* 2088  */   width: 0;
/* 2089  */   height: 0;
/* 2090  */   border-style: solid;
/* 2091  */   border-width: 0 15px 15px 0;
/* 2092  */   border-color: transparent #F37023 transparent transparent;
/* 2093  */ }
/* 2094  */
/* 2095  */
/* 2096  */ /* Service Mega Menu Start */
/* 2097  */
/* 2098  */ .header__mega--menu-top {
/* 2099  */   display: flex;
/* 2100  */   justify-content: space-between;

/* app.css */

/* 2101  */   margin-bottom: 30px;
/* 2102  */   position: relative;
/* 2103  */ }
/* 2104  */
/* 2105  */ .header__mega--head-right-grid--title {
/* 2106  */   font-size: 45px;
/* 2107  */   font-weight: 700;
/* 2108  */   color: #666666;
/* 2109  */   margin: 20px 0;
/* 2110  */ }
/* 2111  */
/* 2112  */ .header__mega--service {
/* 2113  */   display: grid;
/* 2114  */   gap: 60px 30px;
/* 2115  */   height: calc(100% - 115px);
/* 2116  */   overflow: auto;
/* 2117  */   grid-template-columns: repeat(3, 1fr);
/* 2118  */   grid-auto-rows: max-content;
/* 2119  */   padding-right: 15px;
/* 2120  */ }
/* 2121  */
/* 2122  */ #case_studies_menu .header__mega--service {
/* 2123  */   grid-template-columns: auto;
/* 2124  */ }
/* 2125  */
/* 2126  */ .header__mega--list-inner {
/* 2127  */   height: 100%;
/* 2128  */ }
/* 2129  */
/* 2130  */ .header__mega--service::-webkit-scrollbar {
/* 2131  */   width: 4px;
/* 2132  */ }
/* 2133  */
/* 2134  */ .header__mega--service::-webkit-scrollbar-track {
/* 2135  */   box-shadow: inset 0 0 1px 4px rgba(0, 0, 0, 15%);
/* 2136  */   border-radius: 0px;
/* 2137  */ }
/* 2138  */
/* 2139  */ .header__mega--service::-webkit-scrollbar-thumb {
/* 2140  */   background: var(--orange);
/* 2141  */   border-radius: 0px;
/* 2142  */ }
/* 2143  */
/* 2144  */ .header__mega-service-menu {
/* 2145  */   margin-bottom: 30px;
/* 2146  */ }
/* 2147  */
/* 2148  */ .header .header__mega-service-menu ul {
/* 2149  */   display: block !important;
/* 2150  */   margin-top: 20px;

/* app.css */

/* 2151  */   float: left;
/* 2152  */ }
/* 2153  */
/* 2154  */ .header .header__mega-service-menu span {
/* 2155  */   color: var(--black);
/* 2156  */   font-size: 18px;
/* 2157  */   font-weight: 600;
/* 2158  */ }
/* 2159  */
/* 2160  */ .header .header__mega-service-menu ul li {
/* 2161  */   width: 100%;
/* 2162  */   margin: 0 0 12px;
/* 2163  */ }
/* 2164  */
/* 2165  */ .header .header__mega-service-menu ul li:last-child {
/* 2166  */   margin: 0;
/* 2167  */ }
/* 2168  */
/* 2169  */ .header-list {
/* 2170  */   padding: 0;
/* 2171  */   font-size: 16px;
/* 2172  */   line-height: 26px;
/* 2173  */   color: #303030;
/* 2174  */   font-weight: 500;
/* 2175  */   text-transform: unset;
/* 2176  */   background-image: linear-gradient(to right, var(--orange), var(--orange) 50%, #666666 50%);
/* 2177  */   background-size: 200% 100%;
/* 2178  */   background-position: 100%;
/* 2179  */   display: inline-block;
/* 2180  */   position: relative;
/* 2181  */   -webkit-background-clip: text;
/* 2182  */   -webkit-text-fill-color: transparent;
/* 2183  */   transform: translateX(0px);
/* 2184  */   transition: all 0.3s ease-in-out;
/* 2185  */ }
/* 2186  */
/* 2187  */ .header-list.active {
/* 2188  */   background: linear-gradient(245.24deg, var(--orange) 0%, var(--orange) 100%);
/* 2189  */   background-clip: text;
/* 2190  */   color: transparent;
/* 2191  */ }
/* 2192  */
/* 2193  */ .header-list:hover {
/* 2194  */   background-position: 0;
/* 2195  */   transform: translateX(17px);
/* 2196  */ }
/* 2197  */
/* 2198  */ .header-list:before {
/* 2199  */   content: "";
/* 2200  */   top: 12px;

/* app.css */

/* 2201  */   width: 0px;
/* 2202  */   left: -17px;
/* 2203  */   height: 2px;
/* 2204  */   background: #F78D1E;
/* 2205  */   position: absolute;
/* 2206  */   transition: all 0.3s;
/* 2207  */ }
/* 2208  */
/* 2209  */ .header-list:hover:before {
/* 2210  */   width: 10px;
/* 2211  */ }
/* 2212  */
/* 2213  */
/* 2214  */
/* 2215  */ /* Service Mega Menu End */
/* 2216  */
/* 2217  */ /* Expertise Mega Menu Start */
/* 2218  */
/* 2219  */ .header__mega--expertise {
/* 2220  */   display: flex;
/* 2221  */   flex-wrap: wrap;
/* 2222  */   gap: 40px;
/* 2223  */   align-items: stretch;
/* 2224  */ }
/* 2225  */
/* 2226  */ .header__mega--expertise-inner {
/* 2227  */   width: 100%;
/* 2228  */   position: relative;
/* 2229  */   background: rgba(243, 112, 35, 0.05);
/* 2230  */   padding: 30px;
/* 2231  */ }
/* 2232  */
/* 2233  */ .header__mega--expertise-inner-title {
/* 2234  */   font-size: 28px;
/* 2235  */   line-height: 38px;
/* 2236  */   font-weight: 700;
/* 2237  */   color: var(--black);
/* 2238  */   margin-bottom: 6px;
/* 2239  */   display: block;
/* 2240  */   width: 100%;
/* 2241  */ }
/* 2242  */
/* 2243  */
/* 2244  */ .header__mega--expertise-inner-cont {
/* 2245  */   font-size: 16px;
/* 2246  */   line-height: 24px;
/* 2247  */   font-weight: 400;
/* 2248  */   color: var(--black);
/* 2249  */ }
/* 2250  */

/* app.css */

/* 2251  */ .header__mega--expertise-inner:hover {
/* 2252  */   background: var(--orange);
/* 2253  */ }
/* 2254  */
/* 2255  */ .header__mega--expertise-inner:hover .header__mega--expertise-inner-title,
/* 2256  */ .header__mega--expertise-inner:hover .header__mega--expertise-inner-cont {
/* 2257  */   color: var(--white);
/* 2258  */ }
/* 2259  */
/* 2260  */ .header__mega--expertise-inner:before {
/* 2261  */   content: "";
/* 2262  */   position: absolute;
/* 2263  */   top: 0;
/* 2264  */   right: 0;
/* 2265  */   width: 0;
/* 2266  */   height: 0;
/* 2267  */   border-style: solid;
/* 2268  */   border-width: 0 66px 66px 0;
/* 2269  */   border-color: transparent #F37023 transparent transparent;
/* 2270  */ }
/* 2271  */
/* 2272  */ /* Expertise Mega Menu End */
/* 2273  */
/* 2274  */ /* Case Studies Mega Menu Start */
/* 2275  */
/* 2276  */ .header__mega--case {
/* 2277  */   display: flex;
/* 2278  */   gap: 40px;
/* 2279  */   flex-wrap: wrap;
/* 2280  */ }
/* 2281  */
/* 2282  */ .header__mega--case-inner {
/* 2283  */   max-width: calc((100% / 3) - 27px);
/* 2284  */   width: 100%;
/* 2285  */ }
/* 2286  */
/* 2287  */ .header__mega--case-inner-cont-title {
/* 2288  */   font-size: 24px;
/* 2289  */   line-height: 29px;
/* 2290  */   display: block;
/* 2291  */   margin: 0 0 6px;
/* 2292  */   color: var(--black);
/* 2293  */   font-weight: 700;
/* 2294  */ }
/* 2295  */
/* 2296  */ .header__mega--case-inner-cont-title:hover {
/* 2297  */   text-decoration: underline;
/* 2298  */ }
/* 2299  */
/* 2300  */ .header__mega--case-inner-cont p {

/* app.css */

/* 2301  */   font-size: 16px;
/* 2302  */   line-height: 24px;
/* 2303  */   color: var(--orange);
/* 2304  */   font-weight: 400;
/* 2305  */ }
/* 2306  */
/* 2307  */
/* 2308  */ .header__mega--case-inner-img {
/* 2309  */   position: relative;
/* 2310  */   display: block;
/* 2311  */   overflow: hidden;
/* 2312  */ }
/* 2313  */
/* 2314  */ .header__mega--case-inner-img img {
/* 2315  */   width: 100%;
/* 2316  */   height: 100%;
/* 2317  */   overflow: hidden;
/* 2318  */   transition: all 0.3s;
/* 2319  */ }
/* 2320  */
/* 2321  */ .header__mega--case-inner-img:hover img {
/* 2322  */   transform: scale(1.1);
/* 2323  */   transition: all 0.3s;
/* 2324  */ }
/* 2325  */
/* 2326  */ .header__mega--case-inner-cont {
/* 2327  */   margin-top: 16px;
/* 2328  */ }
/* 2329  */
/* 2330  */ .header__mega--case-link {
/* 2331  */   text-align: center;
/* 2332  */   margin: 0 auto 0;
/* 2333  */ }
/* 2334  */
/* 2335  */ .header__mega--case-link-btn {
/* 2336  */   box-shadow: 0px 0px 10px 0px rgba(243, 112, 35, 0.1);
/* 2337  */ }
/* 2338  */
/* 2339  */ /* Case Studies Mega Menu End */
/* 2340  */
/* 2341  */ /* Industries Mega Menu Start */
/* 2342  */
/* 2343  */ .header__mega--indus {
/* 2344  */   display: flex;
/* 2345  */   gap: 40px;
/* 2346  */   flex-wrap: wrap;
/* 2347  */ }
/* 2348  */
/* 2349  */ .header__mega--indus-inner {
/* 2350  */   width: 100%;

/* app.css */

/* 2351  */   position: relative;
/* 2352  */   height: auto;
/* 2353  */   overflow: hidden;
/* 2354  */ }
/* 2355  */
/* 2356  */ .header__mega--indus-inner img {
/* 2357  */   object-fit: cover;
/* 2358  */   transition: all 0.3s;
/* 2359  */ }
/* 2360  */
/* 2361  */ .header__mega--indus-inner:hover img {
/* 2362  */   transform: scale(1.1);
/* 2363  */   transition: all 0.3s;
/* 2364  */ }
/* 2365  */
/* 2366  */ .header__mega--indus-inner-img {
/* 2367  */   position: relative;
/* 2368  */ }
/* 2369  */
/* 2370  */ .header__mega--indus-inner-img img {
/* 2371  */   width: 100%;
/* 2372  */ }
/* 2373  */
/* 2374  */ .header__mega--indus-inner-img:before {
/* 2375  */   content: "";
/* 2376  */   width: 100%;
/* 2377  */   height: 100%;
/* 2378  */   display: block;
/* 2379  */   position: absolute;
/* 2380  */   background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 100%);
/* 2381  */   background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 100%);
/* 2382  */   background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 100%);
/* 2383  */   z-index: 1;
/* 2384  */ }
/* 2385  */
/* 2386  */ .header__mega--indus-inner-cont {
/* 2387  */   position: absolute;
/* 2388  */   bottom: 40px;
/* 2389  */   text-align: center;
/* 2390  */   padding: 0 20px;
/* 2391  */   width: 100%;
/* 2392  */   z-index: 2;
/* 2393  */ }
/* 2394  */
/* 2395  */ .header__mega--indus-inner-cont-title {
/* 2396  */   font-size: 30px;
/* 2397  */   line-height: 36px;
/* 2398  */   font-weight: 700;
/* 2399  */   color: var(--white);
/* 2400  */ }

/* app.css */

/* 2401  */
/* 2402  */ .header__mega--indus-see-more {
/* 2403  */   background: rgba(243, 112, 35, 0.05);
/* 2404  */   position: relative;
/* 2405  */ }
/* 2406  */
/* 2407  */ .header__mega--indus-see-more--inner {
/* 2408  */   position: absolute;
/* 2409  */   left: 50%;
/* 2410  */   width: 100%;
/* 2411  */   top: 50%;
/* 2412  */   transform: translate(-50%, -50%);
/* 2413  */   padding: 0 30px;
/* 2414  */ }
/* 2415  */
/* 2416  */ .header__mega--indus-see-more-title {
/* 2417  */   font-size: 36px;
/* 2418  */   line-height: 43px;
/* 2419  */   display: block;
/* 2420  */   color: var(--black);
/* 2421  */   font-weight: 800;
/* 2422  */   margin: 0 0 8px;
/* 2423  */ }
/* 2424  */
/* 2425  */ .header__mega--indus-see-more-cont {
/* 2426  */   font-size: 16px;
/* 2427  */   line-height: 24px;
/* 2428  */   color: var(--black);
/* 2429  */   display: block;
/* 2430  */ }
/* 2431  */
/* 2432  */ .header__mega--indus-see-more:before {
/* 2433  */   content: "";
/* 2434  */   position: absolute;
/* 2435  */   top: 0;
/* 2436  */   right: 0;
/* 2437  */   width: 0;
/* 2438  */   height: 0;
/* 2439  */   border-style: solid;
/* 2440  */   border-width: 0 66px 66px 0;
/* 2441  */   border-color: transparent #F37023 transparent transparent;
/* 2442  */
/* 2443  */ }
/* 2444  */
/* 2445  */ /* Industries Mega Menu End */
/* 2446  */
/* 2447  */
/* 2448  */ /* Insights Mega Menu Start */
/* 2449  */
/* 2450  */ .header__mega-insights {

/* app.css */

/* 2451  */   display: flex;
/* 2452  */   flex-wrap: wrap;
/* 2453  */   gap: 40px;
/* 2454  */ }
/* 2455  */
/* 2456  */ .header__mega-insights--inner {
/* 2457  */   width: 100%;
/* 2458  */ }
/* 2459  */
/* 2460  */ .header__mega-insights--inner-img {
/* 2461  */   height: auto;
/* 2462  */   display: block;
/* 2463  */   position: relative;
/* 2464  */   margin-bottom: 12px;
/* 2465  */ }
/* 2466  */
/* 2467  */ .header__mega-insights--inner-img img {
/* 2468  */   width: 100%;
/* 2469  */   height: 100%;
/* 2470  */   object-fit: cover;
/* 2471  */   transition: all 0.3s;
/* 2472  */ }
/* 2473  */
/* 2474  */ .header__mega-insights--inner-cont-title {
/* 2475  */   font-size: 24px;
/* 2476  */   line-height: 34px;
/* 2477  */   font-weight: 700;
/* 2478  */   color: var(--black);
/* 2479  */   margin-bottom: 6px;
/* 2480  */   display: block;
/* 2481  */   -webkit-line-clamp: 3;
/* 2482  */   overflow: hidden;
/* 2483  */   display: -webkit-box;
/* 2484  */   -webkit-box-orient: vertical;
/* 2485  */   text-overflow: ellipsis;
/* 2486  */ }
/* 2487  */
/* 2488  */ .header__mega-insights--inner-cont-date {
/* 2489  */   font-size: 16px;
/* 2490  */   line-height: 24px;
/* 2491  */   color: var(--black);
/* 2492  */   font-weight: 400;
/* 2493  */ }
/* 2494  */
/* 2495  */ .header__mega-insights--inner-last {
/* 2496  */   padding: 40px;
/* 2497  */   background: rgba(243, 112, 35, 0.05);
/* 2498  */   position: relative;
/* 2499  */ }
/* 2500  */

/* app.css */

/* 2501  */ .header__mega-insights--inner-last:hover {
/* 2502  */   background: var(--orange);
/* 2503  */ }
/* 2504  */
/* 2505  */ .header__mega-insights--inner-last:hover .header__mega-insights--inner-last-title,
/* 2506  */ .header__mega-insights--inner-last:hover .header__mega-insights--inner-last-cont {
/* 2507  */   color: var(--white);
/* 2508  */ }
/* 2509  */
/* 2510  */ .header__mega-insights--inner-last-title {
/* 2511  */   font-size: 36px;
/* 2512  */   line-height: 44px;
/* 2513  */   font-weight: 800;
/* 2514  */   color: var(--black);
/* 2515  */   display: block;
/* 2516  */   margin-bottom: 6px;
/* 2517  */ }
/* 2518  */
/* 2519  */ .header__mega-insights--inner-last-cont {
/* 2520  */   font-size: 24px;
/* 2521  */   line-height: 32px;
/* 2522  */   font-weight: 400;
/* 2523  */   color: var(--black);
/* 2524  */   display: block;
/* 2525  */ }
/* 2526  */
/* 2527  */ .header__mega-insights--inner-last:before {
/* 2528  */   content: "";
/* 2529  */   position: absolute;
/* 2530  */   top: 0;
/* 2531  */   right: 0;
/* 2532  */   width: 0;
/* 2533  */   height: 0;
/* 2534  */   border-style: solid;
/* 2535  */   border-width: 0 66px 66px 0;
/* 2536  */   border-color: transparent #F37023 transparent transparent;
/* 2537  */ }
/* 2538  */
/* 2539  */ .header__mega-insights--inner-cont a {
/* 2540  */   display: block;
/* 2541  */ }
/* 2542  */
/* 2543  */ .header__mega-insights--inner-img a {
/* 2544  */   overflow: hidden;
/* 2545  */   display: block;
/* 2546  */   height: 100%;
/* 2547  */ }
/* 2548  */
/* 2549  */ .header__mega-insights--inner-img a:hover img {
/* 2550  */   transform: scale(1.1);

/* app.css */

/* 2551  */   transition: all 0.3s;
/* 2552  */ }
/* 2553  */
/* 2554  */ .header__mega-insights--inner-cont a {
/* 2555  */   display: block;
/* 2556  */ }
/* 2557  */
/* 2558  */ .header__mega-insights--inner-cont a:hover .header__mega-insights--inner-cont-title {
/* 2559  */   text-decoration: underline;
/* 2560  */ }
/* 2561  */
/* 2562  */ /* css for mega menu logo top */
/* 2563  */
/* 2564  */ .header__mega--logo {
/* 2565  */   position: relative;
/* 2566  */   padding: 70px 30px 30px 0px;
/* 2567  */ }
/* 2568  */
/* 2569  */ @media (max-width: 768px) {
/* 2570  */
/* 2571  */   .header__mega--logo img {
/* 2572  */     max-width: 80%;
/* 2573  */   }
/* 2574  */
/* 2575  */   .header__mega--logo {
/* 2576  */     position: relative;
/* 2577  */     padding: 60px 0px 0px 0px;
/* 2578  */   }
/* 2579  */
/* 2580  */ }
/* 2581  */
/* 2582  */ @media (max-width: 480px) {
/* 2583  */
/* 2584  */   .header__mega--logo {
/* 2585  */     position: relative;
/* 2586  */     padding: 46px 0px 0px 0px;
/* 2587  */   }
/* 2588  */
/* 2589  */   .header__mega--logo img {
/* 2590  */     max-width: 75%;
/* 2591  */   }
/* 2592  */   .header ul {
/* 2593  */   	padding:0px;
/* 2594  */   }
/* 2595  */ }
/* 2596  */
/* 2597  */
/* 2598  */
/* 2599  */
/* 2600  */ @media (max-width: 1199px) {

/* app.css */

/* 2601  */
/* 2602  */   /* .header__mega--head-left ul#mega-header li:nth-child(2)::after {
/* 2603  *|     display: block;
/* 2604  *|   } */
/* 2605  */   .header__mega--head-left ul#mega-header li::after {
/* 2606  */     display: none;
/* 2607  */   }
/* 2608  */ }
/* 2609  */
/* 2610  */ @media (min-width: 768px) {
/* 2611  */   .header__logo-col .custom-logo {
/* 2612  */     width: 200px;
/* 2613  */   }
/* 2614  */
/* 2615  */   .header__fixed>.container {
/* 2616  */     padding: 18px 15px;
/* 2617  */   }
/* 2618  */
/* 2619  */   .header__mega {
/* 2620  */     max-width: 400px;
/* 2621  */   }
/* 2622  */
/* 2623  */   .header .col-12.text-right {
/* 2624  */     padding-top: 0px;
/* 2625  */     text-align: right;
/* 2626  */   }
/* 2627  */
/* 2628  */   .header__logo-col {
/* 2629  */     padding-bottom: 0px;
/* 2630  */   }
/* 2631  */
/* 2632  */   .header__logo {
/* 2633  */     max-width: 100%;
/* 2634  */   }
/* 2635  */
/* 2636  */   .header__contact-details-cont {
/* 2637  */     padding-top: 0px;
/* 2638  */     float: right;
/* 2639  */     margin: 0 0 10px;
/* 2640  */   }
/* 2641  */
/* 2642  */   .header__contact-details-cont>.fa {
/* 2643  */     display: block;
/* 2644  */   }
/* 2645  */
/* 2646  */   .header__contact-details-inner-cont {
/* 2647  */     display: block;
/* 2648  */     float: left;
/* 2649  */   }
/* 2650  */

/* app.css */

/* 2651  */   .header__phone {
/* 2652  */     font-size: 17px;
/* 2653  */     display: block;
/* 2654  */   }
/* 2655  */
/* 2656  */   .header__phone-mobile-link {
/* 2657  */     display: none;
/* 2658  */   }
/* 2659  */
/* 2660  */   .header__burger {
/* 2661  */     width: 45px;
/* 2662  */     height: 45px;
/* 2663  */   }
/* 2664  */
/* 2665  */   .header__menu-cont .bars {
/* 2666  */     width: 45px;
/* 2667  */     height: 45px;
/* 2668  */   }
/* 2669  */ }
/* 2670  */
/* 2671  */ @media (min-width: 992px) {
/* 2672  */   .header__logo-col .custom-logo {
/* 2673  */     width: auto;
/* 2674  */   }
/* 2675  */
/* 2676  */   .header__logo-col {
/* 2677  */     text-align: center;
/* 2678  */   }
/* 2679  */
/* 2680  */   .header__fixed>.container {
/* 2681  */     padding: 22px 15px;
/* 2682  */   }
/* 2683  */
/* 2684  */   .header__phone {
/* 2685  */     font-size: 19px;
/* 2686  */   }
/* 2687  */
/* 2688  */   .header .main-navigation .menu-menu-1-container {
/* 2689  */     position: relative;
/* 2690  */     top: auto;
/* 2691  */     height: auto;
/* 2692  */     padding-top: 0px;
/* 2693  */     background: none;
/* 2694  */   }
/* 2695  */
/* 2696  */   .header ul {
/* 2697  */     float: none;
/* 2698  */     background: none;
/* 2699  */     position: static;
/* 2700  */     display: flex !important;

/* app.css */

/* 2701  */     align-items: center;
/* 2702  */     width: 100%;
/* 2703  */     height: auto;
/* 2704  */     padding: 0;
/* 2705  */     justify-content: end;
/* 2706  */     border-radius: 0px;
/* 2707  */   }
/* 2708  */
/* 2709  */   .header ul li {
/* 2710  */     width: auto;
/* 2711  */   }
/* 2712  */
/* 2713  */   .header ul#primary-menu li a {
/* 2714  */     color: var(--black);
/* 2715  */     width: auto;
/* 2716  */     font-size: 1.4rem;
/* 2717  */     padding: 10px;
/* 2718  */   }
/* 2719  */
/* 2720  */   .header ul#primary-menu li a {
/* 2721  */     color: var(--black);
/* 2722  */     width: auto;
/* 2723  */     font-size: 1.4rem;
/* 2724  */     padding: 10px;
/* 2725  */   }
/* 2726  */
/* 2727  */
/* 2728  */   .header .container,
/* 2729  */   .header .container div[class*="col-"],
/* 2730  */   .header .container .header__menu-cont,
/* 2731  */   .header .container .header__menu-cont .main-navigation .menu-menu-1-container,
/* 2732  */   .header .container .header__menu-cont ul,
/* 2733  */   .header .container .header__menu-cont ul li.mega-menu {
/* 2734  */     position: static;
/* 2735  */   }
/* 2736  */
/* 2737  */   .header .container .header__menu-cont .main-navigation .menu-menu-1-container {
/* 2738  */     overflow: visible;
/* 2739  */     padding-bottom: 0px;
/* 2740  */   }
/* 2741  */
/* 2742  */   .header__mega--logo {
/* 2743  */   	transform: translateX(-30px);
/* 2744  */   }
/* 2745  */
/* 2746  */   table + .header__mega--logo {
/* 2747  */ 	transform: translateX(-30px);
/* 2748  */   }
/* 2749  */
/* 2750  */ }

/* app.css */

/* 2751  */
/* 2752  */
/* 2753  */ @media (min-width: 1200px) {
/* 2754  */   .header__logo-col .custom-logo {
/* 2755  */     width: 230px;
/* 2756  */   }
/* 2757  */
/* 2758  */   .header__mega--head-left ul#mega-header li a {
/* 2759  */     font-size: 20px;
/* 2760  */     line-height: 26px;
/* 2761  */   }
/* 2762  */
/* 2763  */   .header__mega--head-left ul#mega-header li {
/* 2764  */     margin: 0 0 20px;
/* 2765  */   }
/* 2766  */
/* 2767  */   .header__mega--footer {
/* 2768  */     display: block;
/* 2769  */   }
/* 2770  */
/* 2771  */   .header__mega--head {
/* 2772  */     display: flex;
/* 2773  */     height: calc(100vh - 110px);
/* 2774  */   }
/* 2775  */
/* 2776  */   .header__mega {
/* 2777  */     max-width: 100%;
/* 2778  */   }
/* 2779  */
/* 2780  */   .header__mega--head-left {
/* 2781  */     padding: 0px 0px 0px 10px;
/* 2782  */     width: 250px;
/* 2783  */   }
/* 2784  */
/* 2785  */   .header__fixed>.container {
/* 2786  */     padding: 26px 15px;
/* 2787  */   }
/* 2788  */
/* 2789  */   .header ul li {
/* 2790  */     margin: 0 5px;
/* 2791  */   }
/* 2792  */
/* 2793  */   .header__menu-grid .header__menu-cont {
/* 2794  */     display: block;
/* 2795  */   }
/* 2796  */
/* 2797  */   .header__mega--head-right {
/* 2798  */     display: block;
/* 2799  */     padding: 50px 10px 0px 40px;
/* 2800  */     width: calc(100% - 250px);

/* app.css */

/* 2801  */   }
/* 2802  */
/* 2803  */   .header__mega--head-left .mega-header-nav .header__mega--head-partner-logo {
/* 2804  */     width: 210px;
/* 2805  */   }
/* 2806  */
/* 2807  */   .header__mega--menu-top {
/* 2808  */     margin-bottom: 20px;
/* 2809  */   }
/* 2810  */
/* 2811  */   .header__mega--menu-top .header__menu-close {
/* 2812  */     width: 44px;
/* 2813  */     height: 44px;
/* 2814  */   }
/* 2815  */
/* 2816  */   .header__mega--service {
/* 2817  */     gap: 20px;
/* 2818  */   }
/* 2819  */
/* 2820  */   .header__mega--expertise {
/* 2821  */     gap: 20px;
/* 2822  */   }
/* 2823  */
/* 2824  */   .header__mega--case-inner {
/* 2825  */     max-width: calc((100% / 2) - 20px);
/* 2826  */     width: 100%;
/* 2827  */   }
/* 2828  */
/* 2829  */   .header__mega--hire,
/* 2830  */   .header__mega-insights {
/* 2831  */     gap: 30px;
/* 2832  */   }
/* 2833  */
/* 2834  */   .header__mega--hire-main {
/* 2835  */     gap: 28px;
/* 2836  */   }
/* 2837  */
/* 2838  */   .header__mega--hire-main-inner {
/* 2839  */     max-width: calc((100% / 2) - 14px);
/* 2840  */     padding: 20px;
/* 2841  */   }
/* 2842  */
/* 2843  */   .header__mega--hire-main-inner-num {
/* 2844  */     font-size: 44px;
/* 2845  */     line-height: 55px;
/* 2846  */   }
/* 2847  */
/* 2848  */   .header__mega--hire-main-inner-num-cont {
/* 2849  */     font-size: 20px;
/* 2850  */     line-height: 25px;

/* app.css */

/* 2851  */   }
/* 2852  */
/* 2853  */   .header__mega--hire-box-cont {
/* 2854  */     padding: 0 20px 40px;
/* 2855  */   }
/* 2856  */
/* 2857  */   .header__mega--hire-box-cont-sub-title {
/* 2858  */     font-size: 20px;
/* 2859  */     line-height: 24px;
/* 2860  */   }
/* 2861  */
/* 2862  */   .header__mega--hire-box-cont-title {
/* 2863  */     font-size: 26px;
/* 2864  */     line-height: 32px;
/* 2865  */   }
/* 2866  */
/* 2867  */   .header__mega-insights {
/* 2868  */     gap: 30px;
/* 2869  */   }
/* 2870  */
/* 2871  */   .header__mega-insights--inner-last {
/* 2872  */     padding: 30px;
/* 2873  */   }
/* 2874  */
/* 2875  */   .header_mega_bg_black_color {
/* 2876  */     right: 0;
/* 2877  */     left: auto;
/* 2878  */     width: 0vw;
/* 2879  */     top: 0;
/* 2880  */     transition: all 0.3s;
/* 2881  */   }
/* 2882  */
/* 2883  */   .header__mega.active .header_mega_bg_black_color {
/* 2884  */     right: 0;
/* 2885  */     left: auto;
/* 2886  */     width: 100vw;
/* 2887  */     top: 0;
/* 2888  */     transition: all 0.3s;
/* 2889  */   }
/* 2890  */
/* 2891  */   .header__mega .mega_sub_menu a:before {
/* 2892  */     content: "";
/* 2893  */   }
/* 2894  */
/* 2895  */   .header__mega--footer-grid-box-cont-link {
/* 2896  */     font-size: 20px;
/* 2897  */   }
/* 2898  */
/* 2899  */   .header__mega--footer-grid-box-cont-head {
/* 2900  */     font-size: 14px;

/* app.css */

/* 2901  */   }
/* 2902  */
/* 2903  */   .header__mega--head-left .patner_with_us {
/* 2904  */     width: 240px;
/* 2905  */   }
/* 2906  */
/* 2907  */   .header__mega--head-left .patner_with_us p {
/* 2908  */     font-size: 16px;
/* 2909  */     line-height: 18px;
/* 2910  */   }
/* 2911  */
/* 2912  */   .header__mega--head-left .patner_with_us h3 {
/* 2913  */     font-size: 26px;
/* 2914  */     line-height: 30px;
/* 2915  */   }
/* 2916  */
/* 2917  */   .header__mega--head-left .patner_with_us:before {
/* 2918  */     background-size: 75px;
/* 2919  */     width: 75px;
/* 2920  */     height: 75px;
/* 2921  */   }
/* 2922  */
/* 2923  */   .header__mega-insights--inner-img a {
/* 2924  */     height: 155px;
/* 2925  */   }
/* 2926  */ }
/* 2927  */
/* 2928  */ @media (min-width: 1440px) {
/* 2929  */   .header__logo-col .custom-logo {
/* 2930  */     width: 250px;
/* 2931  */   }
/* 2932  */
/* 2933  */   .header__mega-insights--inner-last {
/* 2934  */     padding: 30px;
/* 2935  */   }
/* 2936  */
/* 2937  */   .header__mega--head-left ul#mega-header li a {
/* 2938  */     font-size: 24px;
/* 2939  */     line-height: 32px;
/* 2940  */   }
/* 2941  */
/* 2942  */   .header__mega-insights--inner-last-title {
/* 2943  */     font-size: 26px;
/* 2944  */     line-height: 34px;
/* 2945  */   }
/* 2946  */
/* 2947  */   .header__mega-insights--inner-last-cont {
/* 2948  */     font-size: 18px;
/* 2949  */     line-height: 26px;
/* 2950  */   }

/* app.css */

/* 2951  */
/* 2952  */   .header__mega--hire-main {
/* 2953  */     gap: 38px;
/* 2954  */   }
/* 2955  */
/* 2956  */   .header__mega--hire,
/* 2957  */   .header__mega-insights,
/* 2958  */   .header__mega-insights {
/* 2959  */     gap: 40px;
/* 2960  */   }
/* 2961  */
/* 2962  */   .header__mega--hire-box-cont {
/* 2963  */     padding: 0 40px 40px;
/* 2964  */   }
/* 2965  */
/* 2966  */   .header__mega--hire-main-inner {
/* 2967  */     max-width: calc((100% / 2) - 19px);
/* 2968  */     padding: 30px;
/* 2969  */   }
/* 2970  */
/* 2971  */   .header__mega--hire-box-cont-sub-title {
/* 2972  */     font-size: 24px;
/* 2973  */     line-height: 29px;
/* 2974  */   }
/* 2975  */
/* 2976  */   .header__mega--hire-box-cont-title {
/* 2977  */     font-size: 30px;
/* 2978  */     line-height: 36px;
/* 2979  */   }
/* 2980  */
/* 2981  */   .header__mega--hire-main-inner-num-cont {
/* 2982  */     font-size: 22px;
/* 2983  */     line-height: 26px;
/* 2984  */   }
/* 2985  */
/* 2986  */   .header__mega--hire-main-inner-num {
/* 2987  */     font-size: 50px;
/* 2988  */     line-height: 60px;
/* 2989  */   }
/* 2990  */
/* 2991  */   .header__mega--service {
/* 2992  */     gap: 30px;
/* 2993  */   }
/* 2994  */
/* 2995  */   .header__mega--menu-top .header__menu-close {
/* 2996  */     width: 54px;
/* 2997  */     height: 54px;
/* 2998  */   }
/* 2999  */
/* 3000  */   .header__mega--menu-top {

/* app.css */

/* 3001  */     margin-bottom: 30px;
/* 3002  */   }
/* 3003  */
/* 3004  */   .header__mega--head-left ul#mega-header li {
/* 3005  */     margin: 0 0 30px;
/* 3006  */   }
/* 3007  */
/* 3008  */   .header__mega--head-left ul#mega-header li a {
/* 3009  */     font-size: 24px;
/* 3010  */     line-height: 32px;
/* 3011  */   }
/* 3012  */
/* 3013  */   .header__mega--head-left .mega-header-nav .header__mega--head-partner-logo {
/* 3014  */     width: 250px;
/* 3015  */   }
/* 3016  */
/* 3017  */   .header__mega--head-left {
/* 3018  */     padding: 00px 0px 0px 20px;
/* 3019  */   }
/* 3020  */
/* 3021  */   .header ul li {
/* 3022  */     margin: 0 7px;
/* 3023  */   }
/* 3024  */
/* 3025  */   .header__fixed>.container {
/* 3026  */     padding: 30px 15px;
/* 3027  */   }
/* 3028  */
/* 3029  */   .header__logo-col {
/* 3030  */     text-align: left;
/* 3031  */     padding-bottom: 0px;
/* 3032  */   }
/* 3033  */
/* 3034  */   .header__logo-col a {
/* 3035  */     display: block;
/* 3036  */   }
/* 3037  */
/* 3038  */   .header__logo {
/* 3039  */     text-align: left;
/* 3040  */   }
/* 3041  */
/* 3042  */   .header__phone {
/* 3043  */     font-size: 21px;
/* 3044  */   }
/* 3045  */
/* 3046  */   .header ul#primary-menu li a {
/* 3047  */     color: var(--black);
/* 3048  */     width: auto;
/* 3049  */     font-size: 1.6rem;
/* 3050  */     line-height: 2rem;

/* app.css */

/* 3051  */   }
/* 3052  */
/* 3053  */   .header__mega--expertise {
/* 3054  */     gap: 30px;
/* 3055  */   }
/* 3056  */
/* 3057  */   .header__mega--head {
/* 3058  */     height: calc(100vh - 120px);
/* 3059  */   }
/* 3060  */
/* 3061  */   .header__mega-insights--inner-cont-title {
/* 3062  */     font-size: 20px;
/* 3063  */     line-height: 28px;
/* 3064  */   }
/* 3065  */
/* 3066  */   .header__mega--head-left {
/* 3067  */     width: 300px;
/* 3068  */   }
/* 3069  */
/* 3070  */   .header__mega--head-left .patner_with_us {
/* 3071  */     width: 270px;
/* 3072  */   }
/* 3073  */
/* 3074  */   .header__mega--head-left .patner_with_us p {
/* 3075  */     font-size: 18px;
/* 3076  */     line-height: 22px;
/* 3077  */   }
/* 3078  */
/* 3079  */   .header__mega--head-left .patner_with_us h3 {
/* 3080  */     font-size: 29px;
/* 3081  */     line-height: 36px;
/* 3082  */   }
/* 3083  */
/* 3084  */   .header__mega--head-left .patner_with_us:before {
/* 3085  */     background-size: 80px;
/* 3086  */     width: 80px;
/* 3087  */     height: 80px;
/* 3088  */   }
/* 3089  */
/* 3090  */   .header__mega--head-right {
/* 3091  */     width: calc(100% - 300px);
/* 3092  */   }
/* 3093  */ }
/* 3094  */
/* 3095  */ @media (min-width: 1600px) {
/* 3096  */   .header__mega--service {
/* 3097  */     grid-template-columns: repeat(4, 1fr);
/* 3098  */   }
/* 3099  */
/* 3100  */   .header__mega--case-inner {

/* app.css */

/* 3101  */     max-width: calc((100% / 3) - 27px);
/* 3102  */     width: 100%;
/* 3103  */   }
/* 3104  */
/* 3105  */   .header ul#primary-menu li a {
/* 3106  */     font-size: 1.8rem;
/* 3107  */   }
/* 3108  */ }
/* 3109  */
/* 3110  */ @media (min-width: 1200px) {
/* 3111  */   .header__container-fluid {
/* 3112  */     width: 100%;
/* 3113  */     padding-right: 75px !important;
/* 3114  */     padding-left: 75px !important;
/* 3115  */     margin-right: auto;
/* 3116  */     margin-left: auto;
/* 3117  */     max-width: 100%;
/* 3118  */   }
/* 3119  */ }
/* 3120  */ .masthead {
/* 3121  */     position: relative;
/* 3122  */ }
/* 3123  */ .masthead__item:before {
/* 3124  */     content: "";
/* 3125  */     position: absolute;
/* 3126  */     width: 100%;
/* 3127  */     height: 100%;
/* 3128  */     left: 0;
/* 3129  */     top: 0;
/* 3130  */     background: rgba(0, 0, 0, 0.2);
/* 3131  */     z-index: 1;
/* 3132  */ }
/* 3133  */ .masthead__item {
/* 3134  */     position: relative;
/* 3135  */ }
/* 3136  */ .masthead__bg {
/* 3137  */     position: absolute;
/* 3138  */     width: 100%;
/* 3139  */     object-fit: cover;
/* 3140  */     left: 0;
/* 3141  */     top: 0;
/* 3142  */     height: 100%;
/* 3143  */ }
/* 3144  */ .masthead__container {
/* 3145  */     padding: 50px 15px;
/* 3146  */     position: relative;
/* 3147  */     z-index: 2;
/* 3148  */ }
/* 3149  */ .masthead__container p {
/* 3150  */     margin: 0 0 30px;

/* app.css */

/* 3151  */     color: var(--white);
/* 3152  */ }
/* 3153  */ .masthead__btn {
/* 3154  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 3155  */ }
/* 3156  */ .masthead__btn:hover {
/* 3157  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 3158  */ }
/* 3159  */
/* 3160  */ .masthead .slick-initialized .slick-slide {
/* 3161  */     display: flex;
/* 3162  */     align-items: center;
/* 3163  */     height: 100%;
/* 3164  */ }
/* 3165  */ .masthead .masthead__slider{
/* 3166  */     height: 400px;
/* 3167  */ }
/* 3168  */ .masthead .masthead__slider .slick-list,
/* 3169  */ .masthead .masthead__slider .slick-track{
/* 3170  */     height: 100%;
/* 3171  */ }
/* 3172  */
/* 3173  */
/* 3174  */ @media (min-width: 768px) {
/* 3175  */     .masthead__container {
/* 3176  */         padding: 90px 15px;
/* 3177  */     }
/* 3178  */     .masthead .masthead__slider{
/* 3179  */         height: 500px;
/* 3180  */     }
/* 3181  */ }
/* 3182  */
/* 3183  */ @media (min-width: 992px) {
/* 3184  */     .masthead__container {
/* 3185  */         padding: 120px 15px;
/* 3186  */     }
/* 3187  */     .masthead__container p {
/* 3188  */         margin: 0 0 40px;
/* 3189  */     }
/* 3190  */     .masthead .masthead__slider {
/* 3191  */         height: 600px;
/* 3192  */     }
/* 3193  */ }
/* 3194  */
/* 3195  */ @media (min-width: 1200px) {
/* 3196  */     .masthead__container {
/* 3197  */         padding: 150px 15px;
/* 3198  */     }
/* 3199  */     .masthead__container p {
/* 3200  */         margin: 0 0 50px;

/* app.css */

/* 3201  */     }
/* 3202  */     .masthead .masthead__slider {
/* 3203  */         height: calc(100vh - 97px);
/* 3204  */     }
/* 3205  */ }
/* 3206  */
/* 3207  */ @media (min-width: 1440px) {
/* 3208  */     .masthead__container {
/* 3209  */         padding: 180px 15px;
/* 3210  */     }
/* 3211  */     .masthead .masthead__slider {
/* 3212  */         height: calc(100vh - 105px);
/* 3213  */     }
/* 3214  */ }
/* 3215  */
/* 3216  */ @media (min-width: 1600px) {
/* 3217  */     .masthead__container {
/* 3218  */         padding: 210px 15px;
/* 3219  */     }
/* 3220  */ }
/* 3221  */ .business-growth {
/* 3222  */     padding: 40px 0;
/* 3223  */ }
/* 3224  */ .business-growth img {
/* 3225  */     margin-top: 30px;
/* 3226  */ }
/* 3227  */
/* 3228  */ @media (min-width: 768px) {
/* 3229  */     .business-growth {
/* 3230  */         padding: 60px 0;
/* 3231  */     }
/* 3232  */     .business-growth img {
/* 3233  */         margin-top: 0;
/* 3234  */     }
/* 3235  */ }
/* 3236  */ @media (min-width: 992px) {
/* 3237  */     .business-growth {
/* 3238  */         padding: 80px 0;
/* 3239  */     }
/* 3240  */
/* 3241  */ }
/* 3242  */ @media (min-width: 1200px) {
/* 3243  */     .business-growth {
/* 3244  */         padding: 100px 0;
/* 3245  */     }
/* 3246  */ }
/* 3247  */ @media (min-width: 1441px) {
/* 3248  */     .business-growth {
/* 3249  */         padding: 120px 0;
/* 3250  */     }

/* app.css */

/* 3251  */ }
/* 3252  */ .deliver-solutions {
/* 3253  */     position: relative;
/* 3254  */ }
/* 3255  */ .deliver-solutions__bg {
/* 3256  */     position: absolute;
/* 3257  */     width: 100%;
/* 3258  */     height: 100%;
/* 3259  */     object-fit: cover;
/* 3260  */     top: 0;
/* 3261  */     left: 0;
/* 3262  */ }
/* 3263  */ .deliver-solutions__container {
/* 3264  */     padding: 42px 15px;
/* 3265  */ }
/* 3266  */ .deliver-solutions__main {
/* 3267  */     position: relative;
/* 3268  */     padding: 0;
/* 3269  */ }
/* 3270  */ .deliver-solutions__main:before {
/* 3271  */     content: "";
/* 3272  */     position: absolute;
/* 3273  */     background: url("/wp-content/uploads/2024/07/deliver-solutions__vector.svg");
/* 3274  */     right: 0;
/* 3275  */     top: 0;
/* 3276  */     background-size: cover;
/* 3277  */     background-repeat: no-repeat;
/* 3278  */     height: 475px;
/* 3279  */     width: 475px;
/* 3280  */     display: none;
/* 3281  */ }
/* 3282  */ .deliver-solutions__main h2,
/* 3283  */ .deliver-solutions__main p {
/* 3284  */     color: var(--white);
/* 3285  */ }
/* 3286  */
/* 3287  */ @media (min-width: 768px) {
/* 3288  */     .deliver-solutions__container {
/* 3289  */         padding: 62px 15px;
/* 3290  */     }
/* 3291  */ }
/* 3292  */
/* 3293  */ @media (min-width: 992px) {
/* 3294  */     .deliver-solutions__container {
/* 3295  */         padding: 82px 15px;
/* 3296  */     }
/* 3297  */ }
/* 3298  */
/* 3299  */ @media (min-width: 1200px) {
/* 3300  */     .deliver-solutions__container {

/* app.css */

/* 3301  */         padding: 102px 15px;
/* 3302  */     }
/* 3303  */     .deliver-solutions__main:before {
/* 3304  */         display: block;
/* 3305  */     }
/* 3306  */     .deliver-solutions__main {
/* 3307  */         padding: 56px 45px 56px 0;
/* 3308  */     }
/* 3309  */ }
/* 3310  */
/* 3311  */ @media (min-width: 1441px) {
/* 3312  */     .deliver-solutions__container {
/* 3313  */         padding: 122px 15px;
/* 3314  */     }
/* 3315  */ }
/* 3316  */
/* 3317  */ @media (min-width: 1601px) {
/* 3318  */     .deliver-solutions__container {
/* 3319  */         padding: 142px 15px;
/* 3320  */     }
/* 3321  */ }
/* 3322  */ .services {
/* 3323  */     position: relative;
/* 3324  */     padding: 40px 0;
/* 3325  */ }
/* 3326  */ .services__heading {
/* 3327  */     max-width: 1200px;
/* 3328  */     width: 100%;
/* 3329  */     margin: 0 auto 30px;
/* 3330  */ }
/* 3331  */ .services__slider .slick-list .slick-track {
/* 3332  */     margin-top: 30px;
/* 3333  */     margin-bottom: 0;
/* 3334  */     display: flex;
/* 3335  */ }
/* 3336  */ .services__slider--item {
/* 3337  */     padding: 15px;
/* 3338  */     background: var(--lorange);
/* 3339  */     margin-right: 10px;
/* 3340  */     height: inherit;
/* 3341  */ }
/* 3342  */ .services__slider--item:hover {
/* 3343  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 3344  */ }
/* 3345  */ .services__slider--item--img {
/* 3346  */     height: 70px;
/* 3347  */     width: 70px;
/* 3348  */     display: block;
/* 3349  */     background: var(--white);
/* 3350  */     position: relative;

/* app.css */

/* 3351  */     margin: 0 0 20px;
/* 3352  */     transition: all 500ms linear;
/* 3353  */ }
/* 3354  */ .services__slider--item--img:before {
/* 3355  */     content: "";
/* 3356  */     position: absolute;
/* 3357  */     top: 0;
/* 3358  */     right: 0;
/* 3359  */     width: 0;
/* 3360  */     height: 0;
/* 3361  */     border-style: solid;
/* 3362  */     border-width: 0 20px 20px 0;
/* 3363  */     border-color: transparent #F37023 transparent transparent;
/* 3364  */     transition: all 500ms linear;
/* 3365  */ }
/* 3366  */ .services__slider--item--img img {
/* 3367  */     filter: brightness(0);
/* 3368  */     transition: all 500ms linear;
/* 3369  */     position: absolute;
/* 3370  */     left: 50%;
/* 3371  */     top: 50%;
/* 3372  */     transform: translate(-50% , -50%);
/* 3373  */ }
/* 3374  */ .services__slider--item p {
/* 3375  */     font-size: 1.6rem;
/* 3376  */     line-height: 2.4rem;
/* 3377  */     margin: 0;
/* 3378  */ }
/* 3379  */ .services__slider--item:hover .services__slider--item--img {
/* 3380  */     background: var(--orange);
/* 3381  */     transition: 500ms linear;
/* 3382  */ }
/* 3383  */ .services__slider--item:hover .services__slider--item--img img {
/* 3384  */     filter: brightness(1);
/* 3385  */     transition: 500ms linear;
/* 3386  */ }
/* 3387  */ .services__slider--item:hover h4 {
/* 3388  */     color: var(--orange)
/* 3389  */ }
/* 3390  */ .services__slider .slick-dots {
/* 3391  */     position: relative;
/* 3392  */     display: flex;
/* 3393  */     margin: 60px auto 0;
/* 3394  */     width: max-content;
/* 3395  */ }
/* 3396  */ .services__slider .slick-dots:before {
/* 3397  */     content: "";
/* 3398  */     position:absolute;
/* 3399  */     width:100%;
/* 3400  */     background: rgba(0, 0, 0, 0.4);

/* app.css */

/* 3401  */     height: 2px;
/* 3402  */     bottom: -1px;
/* 3403  */ }
/* 3404  */ .services__slider .slick-dots li {
/* 3405  */     margin: 0;
/* 3406  */     padding: 0;
/* 3407  */     line-height: normal;
/* 3408  */     font-size: 0;
/* 3409  */ }
/* 3410  */ .services__slider .slick-dots li button {
/* 3411  */     font-size: 0;
/* 3412  */     width: 25px;
/* 3413  */     height: 4px;
/* 3414  */ }
/* 3415  */ .services__slider .slick-dots li.slick-active {
/* 3416  */     background: #000;
/* 3417  */ }
/* 3418  */ .services__slider.slick-slider .slick-list {
/* 3419  */     padding-left: 30px !important;
/* 3420  */ }
/* 3421  */
/* 3422  */ @media (min-width: 768px) {
/* 3423  */     .services {
/* 3424  */         padding: 60px 0;
/* 3425  */     }
/* 3426  */     .services__slider--item {
/* 3427  */         padding: 30px;
/* 3428  */         margin-right: 15px;
/* 3429  */     }
/* 3430  */     .services__slider--item--img {
/* 3431  */         height: 90px;
/* 3432  */         width: 90px;
/* 3433  */     }
/* 3434  */     .services__slider--item--img:before {
/* 3435  */         border-width: 0 35px 35px 0;
/* 3436  */     }
/* 3437  */     .services__heading {
/* 3438  */         margin: 0 auto 60px;
/* 3439  */     }
/* 3440  */ }
/* 3441  */ @media (min-width: 992px) {
/* 3442  */     .services {
/* 3443  */         padding: 80px 0;
/* 3444  */     }
/* 3445  */     .services__slider--item {
/* 3446  */         margin-right: 20px;
/* 3447  */     }
/* 3448  */
/* 3449  */ }
/* 3450  */ @media (min-width: 1200px) {

/* app.css */

/* 3451  */     .services {
/* 3452  */         padding: 100px 0;
/* 3453  */     }
/* 3454  */     .services__slider--item {
/* 3455  */         margin-right: 25px;
/* 3456  */     }
/* 3457  */ }
/* 3458  */ @media (min-width: 1441px) {
/* 3459  */     .services {
/* 3460  */         padding: 120px 0;
/* 3461  */     }
/* 3462  */     .services__slider--item {
/* 3463  */         margin-right: 30px;
/* 3464  */     }
/* 3465  */ }
/* 3466  */ .innovators {
/* 3467  */     background: linear-gradient(245.24deg, #FF0000 0%, #F78D1E 100%);
/* 3468  */     padding: 40px 0;
/* 3469  */ }
/* 3470  */ .innovators h2,
/* 3471  */ .innovators p {
/* 3472  */     color: var(--white);
/* 3473  */ }
/* 3474  */ .innovators__btn.btn:before {
/* 3475  */     border-color: transparent var(--black) transparent transparent;
/* 3476  */ }
/* 3477  */ .innovators__btn.btn:hover {
/* 3478  */     background: var(--black);
/* 3479  */     box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
/* 3480  */ }
/* 3481  */ .innovators__btn {
/* 3482  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 3483  */ }
/* 3484  */ .innovators p {
/* 3485  */     margin: 0 0 30px;
/* 3486  */ }
/* 3487  */ .innovators img {
/* 3488  */     margin: 30px 0 0;
/* 3489  */ }
/* 3490  */ .innovators .ml-space img {
/* 3491  */     margin: 0 0 30px;
/* 3492  */ }
/* 3493  */
/* 3494  */ @media (min-width: 768px) {
/* 3495  */     .innovators {
/* 3496  */         padding: 60px 0;
/* 3497  */     }
/* 3498  */     .innovators img {
/* 3499  */         margin: 0;
/* 3500  */     }

/* app.css */

/* 3501  */     .innovators p {
/* 3502  */         margin: 0 0 40px;
/* 3503  */     }
/* 3504  */     .innovators .ml-space img {
/* 3505  */         margin: 0;
/* 3506  */     }
/* 3507  */
/* 3508  */ }
/* 3509  */ @media (min-width: 992px) {
/* 3510  */     .innovators {
/* 3511  */         padding: 80px 0;
/* 3512  */     }
/* 3513  */     .innovators p {
/* 3514  */         margin: 0 0 50px;
/* 3515  */     }
/* 3516  */ }
/* 3517  */ @media (min-width: 1200px) {
/* 3518  */     .innovators {
/* 3519  */         padding: 100px 0;
/* 3520  */     }
/* 3521  */ }
/* 3522  */ @media (min-width: 1441px) {
/* 3523  */     .business-growth {
/* 3524  */         padding: 120px 0;
/* 3525  */     }
/* 3526  */ }
/* 3527  */ .facts-figure {
/* 3528  */     position: relative;
/* 3529  */     padding: 40px 0;
/* 3530  */     background: linear-gradient(245.24deg, rgba(255, 0, 0, 0.05) 0%, rgba(247, 141, 30, 0.05) 100%);
/* 3531  */ }
/* 3532  */
/* 3533  */ .facts-figure__main {
/* 3534  */     text-align: center;
/* 3535  */     margin: 0 0 30px;
/* 3536  */ }
/* 3537  */ .counts.facts-figure__main--up {
/* 3538  */     padding-bottom: 30px;
/* 3539  */     border-bottom: 2px solid var(--orange);
/* 3540  */ }
/* 3541  */ .facts-figure__main--down {
/* 3542  */     display: flex;
/* 3543  */     align-items: center;
/* 3544  */     justify-content: center;
/* 3545  */ }
/* 3546  */ .facts-figure__main--down .facts-figure__main--down-left {
/* 3547  */     padding: 30px 16px 25px 16px;
/* 3548  */ }
/* 3549  */ .facts-figure__main--down-right {
/* 3550  */     padding: 30px 16px 25px 16px;

/* app.css */

/* 3551  */     border-left: 2px solid var(--orange);
/* 3552  */ }
/* 3553  */ .facts-figure__main h2 {
/* 3554  */     font-size: 3.5rem;
/* 3555  */     line-height: 4.7rem;
/* 3556  */     margin-bottom: 0.6rem;
/* 3557  */ }
/* 3558  */ .facts-figure__cont p {
/* 3559  */     margin: 0 0 10px;
/* 3560  */ }
/* 3561  */ .facts-figure__cont p:last-child,
/* 3562  */ .facts-figure__main p {
/* 3563  */     margin: 0;
/* 3564  */ }
/* 3565  */
/* 3566  */ @media (min-width: 768px) {
/* 3567  */     .facts-figure {
/* 3568  */         padding: 60px 0;
/* 3569  */     }
/* 3570  */     .facts-figure__main {
/* 3571  */         margin: 0;
/* 3572  */     }
/* 3573  */     .facts-figure__main h2 {
/* 3574  */         font-size: 4rem;
/* 3575  */         line-height: 5.7rem;
/* 3576  */     }
/* 3577  */
/* 3578  */ }
/* 3579  */ @media (min-width: 992px) {
/* 3580  */     .facts-figure {
/* 3581  */         padding: 80px 0;
/* 3582  */     }
/* 3583  */     .facts-figure__main h2 {
/* 3584  */         font-size: 5rem;
/* 3585  */         line-height: 6.7rem;
/* 3586  */     }
/* 3587  */ }
/* 3588  */ @media (min-width: 1200px) {
/* 3589  */     .facts-figure {
/* 3590  */         padding: 100px 0;
/* 3591  */     }
/* 3592  */     .facts-figure__main h2 {
/* 3593  */         font-size: 6rem;
/* 3594  */         line-height: 7.7rem;
/* 3595  */     }
/* 3596  */     .counts.facts-figure__main--up {
/* 3597  */         padding-bottom: 70px;
/* 3598  */     }
/* 3599  */     .facts-figure__main--down .facts-figure__main--down-left {
/* 3600  */         padding: 70px 70px 60px 16px;

/* app.css */

/* 3601  */     }
/* 3602  */     .facts-figure__main--down-right {
/* 3603  */         padding: 70px 10px 60px 60px;
/* 3604  */     }
/* 3605  */ }
/* 3606  */ @media (min-width: 1441px) {
/* 3607  */     .facts-figure {
/* 3608  */         padding: 120px 0;
/* 3609  */     }
/* 3610  */     .facts-figure__main h2 {
/* 3611  */         font-size: 7rem;
/* 3612  */         line-height: 8.7rem;
/* 3613  */     }
/* 3614  */ }
/* 3615  */ @media (min-width: 1601px) {
/* 3616  */     .facts-figure__main h2 {
/* 3617  */         font-size: 8rem;
/* 3618  */         line-height: 9.7rem;
/* 3619  */     }
/* 3620  */ }
/* 3621  */
/* 3622  */ .intelligent-solution {
/* 3623  */     position: relative;
/* 3624  */     padding: 40px 0;
/* 3625  */ }
/* 3626  */ .intelligent-solution__heading {
/* 3627  */     max-width: 1200px;
/* 3628  */     width: 100%;
/* 3629  */     margin: 0 auto 30px;
/* 3630  */     text-align: center;
/* 3631  */ }
/* 3632  */ .intelligent-solution__heading p {
/* 3633  */     margin: 0;
/* 3634  */ }
/* 3635  */ .intelligent-solution__main {
/* 3636  */     display: flex;
/* 3637  */     align-items: stretch;
/* 3638  */     justify-content: space-between;
/* 3639  */     flex-wrap: wrap;
/* 3640  */     gap: 20px;
/* 3641  */ }
/* 3642  */ .intelligent-solution__main--grid {
/* 3643  */     max-width: 100%;
/* 3644  */     width: 100%;
/* 3645  */     background: var(--lorange);
/* 3646  */     padding: 20px;
/* 3647  */     display: flex;
/* 3648  */     align-items: flex-start;
/* 3649  */     flex-wrap: wrap;
/* 3650  */ }

/* app.css */

/* 3651  */ .intelligent-solution__main--grid:hover {
/* 3652  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 3653  */ }
/* 3654  */ .intelligent-solution__main--grid:hover .intelligent-solution__main--img {
/* 3655  */     background: var(--orange);
/* 3656  */     transition: 500ms linear;
/* 3657  */ }
/* 3658  */ .intelligent-solution__main--img {
/* 3659  */     width: 90px;
/* 3660  */     height: 90px;
/* 3661  */     padding: 26px;
/* 3662  */     margin: 0 20px 0 0;
/* 3663  */     background: var(--white);
/* 3664  */     position: relative;
/* 3665  */     transition: all 500ms linear;
/* 3666  */ }
/* 3667  */ .intelligent-solution__main--img:before {
/* 3668  */     content: "";
/* 3669  */     position: absolute;
/* 3670  */     top: 0;
/* 3671  */     right: 0;
/* 3672  */     width: 0;
/* 3673  */     height: 0;
/* 3674  */     border-style: solid;
/* 3675  */     border-width: 0 36px 36px 0;
/* 3676  */     border-color: transparent #F37023 transparent transparent;
/* 3677  */     transition: all 500ms linear;
/* 3678  */ }
/* 3679  */ .intelligent-solution__main--grid:hover .intelligent-solution__main--img img {
/* 3680  */     filter: brightness(1);
/* 3681  */     transition: 500ms linear;
/* 3682  */ }
/* 3683  */ .intelligent-solution__main--img img {
/* 3684  */     filter: brightness(0);
/* 3685  */     transition: all 500ms linear;
/* 3686  */ }
/* 3687  */ .intelligent-solution__main--cont p {
/* 3688  */     font-size: 1.4rem;
/* 3689  */     line-height: 2.2rem;
/* 3690  */     margin: 0;
/* 3691  */ }
/* 3692  */ .intelligent-solution__main--cont {
/* 3693  */     max-width: calc(100% - 132px);
/* 3694  */     width: 100%;
/* 3695  */ }
/* 3696  */ .intelligent-solution__main--cont {
/* 3697  */     max-width: 100%;
/* 3698  */     width: 100%;
/* 3699  */     margin: 20px 0 0;
/* 3700  */ }

/* app.css */

/* 3701  */ .intelligent-solution__main--cont h4 {
/* 3702  */     transition: all 500ms linear;
/* 3703  */ }
/* 3704  */ .intelligent-solution__main--grid:hover .intelligent-solution__main--cont h4 {
/* 3705  */     color: var(--orange);
/* 3706  */     transition: 500ms linear;
/* 3707  */ }
/* 3708  */
/* 3709  */ @media (min-width: 768px) {
/* 3710  */     .intelligent-solution {
/* 3711  */         padding: 60px 0;
/* 3712  */     }
/* 3713  */     .intelligent-solution__main--grid {
/* 3714  */         max-width: calc(50% - 15px);
/* 3715  */         padding: 30px;
/* 3716  */     }
/* 3717  */     .intelligent-solution__heading {
/* 3718  */         margin: 0 auto 45px;
/* 3719  */     }
/* 3720  */     .intelligent-solution__main {
/* 3721  */         gap: 30px;
/* 3722  */     }
/* 3723  */     .intelligent-solution__main--cont p {
/* 3724  */         font-size: 1.6rem;
/* 3725  */         line-height: 2.4rem;
/* 3726  */     }
/* 3727  */ }
/* 3728  */ @media (min-width: 992px) {
/* 3729  */     .intelligent-solution {
/* 3730  */         padding: 80px 0;
/* 3731  */     }
/* 3732  */     .intelligent-solution__main--img {
/* 3733  */         width: 112px;
/* 3734  */         height: 112px;
/* 3735  */     }
/* 3736  */     .intelligent-solution__heading {
/* 3737  */         margin: 0 auto 60px;
/* 3738  */     }
/* 3739  */     .intelligent-solution__main--cont {
/* 3740  */         max-width: calc(100% - 132px);
/* 3741  */         width: 100%;
/* 3742  */     }
/* 3743  */     .intelligent-solution__main--cont {
/* 3744  */         margin: 0;
/* 3745  */     }
/* 3746  */ }
/* 3747  */ @media (min-width: 1200px) {
/* 3748  */     .intelligent-solution {
/* 3749  */         padding: 100px 0;
/* 3750  */     }

/* app.css */

/* 3751  */     .intelligent-solution__heading {
/* 3752  */         margin: 0 auto 75px;
/* 3753  */     }
/* 3754  */ }
/* 3755  */ @media (min-width: 1441px) {
/* 3756  */     .intelligent-solution {
/* 3757  */         padding: 120px 0;
/* 3758  */     }
/* 3759  */     .intelligent-solution__heading {
/* 3760  */         margin: 0 auto 90px;
/* 3761  */     }
/* 3762  */ }
/* 3763  */ .greener-planet {
/* 3764  */     position: relative;
/* 3765  */ }
/* 3766  */ .greener-planet__bg {
/* 3767  */     position: absolute;
/* 3768  */     width: 100%;
/* 3769  */     height: 100%;
/* 3770  */     object-fit: cover;
/* 3771  */     left: 0;
/* 3772  */     top: 0;
/* 3773  */ }
/* 3774  */ .greener-planet .greener-planet__container {
/* 3775  */     padding: 80px 15px;
/* 3776  */ }
/* 3777  */ .greener-planet p {
/* 3778  */     color: var(--white);
/* 3779  */     margin: 0 100px 50px 0;
/* 3780  */ }
/* 3781  */ .greener-planet__btn:before {
/* 3782  */     border-color: transparent var(--green) transparent transparent;
/* 3783  */ }
/* 3784  */ .greener-planet__btn {
/* 3785  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 3786  */ }
/* 3787  */ .greener-planet__btn:hover {
/* 3788  */     background: var(--green);
/* 3789  */     box-shadow: 0px 0px 25px 0px rgba(82, 194, 52, 0.25);
/* 3790  */ }
/* 3791  */
/* 3792  */ @media (min-width: 768px) {
/* 3793  */     .greener-planet .greener-planet__container {
/* 3794  */         padding: 110px 15px;
/* 3795  */     }
/* 3796  */ }
/* 3797  */ @media (min-width: 992px) {
/* 3798  */     .greener-planet .greener-planet__container {
/* 3799  */         padding: 140px 15px;
/* 3800  */     }

/* app.css */

/* 3801  */ }
/* 3802  */ @media (min-width: 1200px) {
/* 3803  */     .greener-planet .greener-planet__container {
/* 3804  */         padding: 170px 15px;
/* 3805  */     }
/* 3806  */ }
/* 3807  */ @media (min-width: 1441px) {
/* 3808  */     .greener-planet .greener-planet__container {
/* 3809  */         padding: 200px 15px;
/* 3810  */     }
/* 3811  */ }
/* 3812  */ @media (min-width: 1601px) {
/* 3813  */     .greener-planet .greener-planet__container {
/* 3814  */         padding: 230px 15px;
/* 3815  */     }
/* 3816  */ }
/* 3817  */ .testimonial {
/* 3818  */     position: relative;
/* 3819  */     padding: 40px 0;
/* 3820  */ }
/* 3821  */ .testimonial__heading {
/* 3822  */     margin: 0 0 30px;
/* 3823  */ }
/* 3824  */ .testimonial__image {
/* 3825  */     position: relative;
/* 3826  */ }
/* 3827  */ .testimonial__image:before {
/* 3828  */     content: "";
/* 3829  */     position: absolute;
/* 3830  */     width: 100%;
/* 3831  */     height: 100%;
/* 3832  */     background: rgba(0,0,0,0.4);
/* 3833  */ }
/* 3834  */ .testimonial__image img {
/* 3835  */     width: 100%;
/* 3836  */ }
/* 3837  */ .testimonial__image--video,
/* 3838  */ .testimonial__image--video-ripple {
/* 3839  */     position: absolute;
/* 3840  */     top: 50%;
/* 3841  */     left: 50%;
/* 3842  */     transform: translate(-50%, -50%);
/* 3843  */ }
/* 3844  */ .testimonial__image--video:before,
/* 3845  */ .testimonial__image--video:after,
/* 3846  */ .testimonial__image--video-ripple:before,
/* 3847  */ .testimonial__image--video-ripple:after{
/* 3848  */   content: '';
/* 3849  */   display: block;
/* 3850  */   position: absolute;

/* app.css */

/* 3851  */   top: 0;
/* 3852  */   right: 0;
/* 3853  */   bottom: 0;
/* 3854  */   left: 0;
/* 3855  */   border: 1px solid var(--orange);
/* 3856  */   border-radius: 50%;
/* 3857  */ }
/* 3858  */ .testimonial__image--video-ripple {
/* 3859  */   height: 100%;
/* 3860  */   width: 100%;
/* 3861  */ }
/* 3862  */ .testimonial__image--video:before{
/* 3863  */   animation: ripple 2s linear 0.5s infinite;
/* 3864  */ }
/* 3865  */ .testimonial__image--video:after {
/* 3866  */   animation: ripple 2s linear 1s infinite;
/* 3867  */ }
/* 3868  */ .testimonial__image--video-ripple:before {
/* 3869  */   animation: ripple 2s linear 1.5s infinite;
/* 3870  */ }
/* 3871  */ .testimonial__image--video-ripple:after {
/* 3872  */   animation: ripple 2s linear 2s infinite;
/* 3873  */ }
/* 3874  */ .testimonial__img {
/* 3875  */     border: 1px solid var(--orange);
/* 3876  */     display: block;
/* 3877  */     background: rgba(243, 112, 35, 0.05);
/* 3878  */     box-shadow: 0px 0px 10px 0px rgba(243, 112, 35, 0.1);
/* 3879  */     margin: 0 0 40px;
/* 3880  */ }
/* 3881  */ .testimonial__auth {
/* 3882  */     border: 1px solid var(--orange);
/* 3883  */     padding: 30px;
/* 3884  */ }
/* 3885  */ .testimonial__auth h3 {
/* 3886  */     color: #d35400;
/* 3887  */     margin: 0 0 6px
/* 3888  */ }
/* 3889  */ .testimonial__auth p {
/* 3890  */     margin: 0;
/* 3891  */     font-size: 18px;
/* 3892  */     line-height: 24px;
/* 3893  */ }
/* 3894  */
/* 3895  */ @keyframes ripple{
/* 3896  */   0% { transform: scale(1); }
/* 3897  */   50% { transform: scale(1.3); opacity:1; }
/* 3898  */   100% { transform: scale(1.6); opacity:0; }
/* 3899  */ }
/* 3900  */

/* app.css */

/* 3901  */ .blockquote-img {
/* 3902  */     width: 30px;
/* 3903  */     height: 30px;
/* 3904  */ }
/* 3905  */ .blockquote-img.top {
/* 3906  */     margin: 0 0 30px;
/* 3907  */ }
/* 3908  */ .blockquote-img img {
/* 3909  */     width: 100%;
/* 3910  */     height: 100%;
/* 3911  */ }
/* 3912  */ .blockquote-img.bottom {
/* 3913  */     transform: rotate(180deg);
/* 3914  */     display: block;
/* 3915  */     margin: 0 0 0 auto;
/* 3916  */ }
/* 3917  */ .testimonial__slider--auth {
/* 3918  */     display: flex;
/* 3919  */     align-items: center;
/* 3920  */     margin: 0 0 30px;
/* 3921  */ }
/* 3922  */ .testimonial__slider--auth-img {
/* 3923  */     position: relative;
/* 3924  */     width: 66px;
/* 3925  */     height: 66px;
/* 3926  */     display: block;
/* 3927  */     border: 1px solid #000;
/* 3928  */ }
/* 3929  */ .testimonial__slider--auth-img img {
/* 3930  */     width: 100%;
/* 3931  */     height: 100%;
/* 3932  */     object-fit: cover;
/* 3933  */ }
/* 3934  */ .testimonial__slider--auth-cont {
/* 3935  */     margin-left: 20px;
/* 3936  */ }
/* 3937  */ .testimonial__slider--auth-cont h3 {
/* 3938  */     color: #d35400;
/* 3939  */     font-weight: 700;
/* 3940  */     margin: 0 0 6px;
/* 3941  */ }
/* 3942  */ .testimonial__slider--auth-cont p {
/* 3943  */     font-size: 14px;
/* 3944  */     line-height: 20px;
/* 3945  */     margin: 0;
/* 3946  */ }
/* 3947  */ .testimonial__slider--auth-img:before {
/* 3948  */     content: "";
/* 3949  */     position: absolute;
/* 3950  */     top: 0;

/* app.css */

/* 3951  */     right: 0;
/* 3952  */     width: 0;
/* 3953  */     height: 0;
/* 3954  */     border-style: solid;
/* 3955  */     border-width: 0 26px 26px 0;
/* 3956  */     border-color: transparent var(--black) transparent transparent;
/* 3957  */ }
/* 3958  */ .testimonial__slider--item-cont {
/* 3959  */     background: linear-gradient(245.24deg, rgba(255, 0, 0, 0.05) 0%, rgba(247, 141, 30, 0.05) 100%);
/* 3960  */     padding: 20px;
/* 3961  */ }
/* 3962  */ .testimonial__slider--item-cont p {
/* 3963  */     font-size: 1.4rem;
/* 3964  */     line-height: 2rem;
/* 3965  */     margin-bottom: 0;
/* 3966  */ }
/* 3967  */ .testimonial__slider {
/* 3968  */     margin: 0 0 30px;
/* 3969  */ }
/* 3970  */ .testimonial__slider .slick-dots {
/* 3971  */     position: relative;
/* 3972  */     display: flex;
/* 3973  */     margin: 20px 0 0;
/* 3974  */     width: max-content;
/* 3975  */ }
/* 3976  */ .testimonial__slider .slick-dots:before {
/* 3977  */     content: "";
/* 3978  */     position:absolute;
/* 3979  */     width:100%;
/* 3980  */     background: rgba(0, 0, 0, 0.4);
/* 3981  */     height: 2px;
/* 3982  */     bottom: -1px;
/* 3983  */ }
/* 3984  */ .testimonial__slider .slick-dots li {
/* 3985  */     margin: 0;
/* 3986  */     padding: 0;
/* 3987  */     line-height: normal;
/* 3988  */     font-size: 0;
/* 3989  */ }
/* 3990  */ .testimonial__slider .slick-dots li button {
/* 3991  */     font-size: 0;
/* 3992  */     width: 25px;
/* 3993  */     height: 4px;
/* 3994  */ }
/* 3995  */ .testimonial__slider .slick-dots li.slick-active {
/* 3996  */     background: #000;
/* 3997  */ }
/* 3998  */ .testimonial__slider.slick-slider .slick-list {
/* 3999  */     padding-left: 0 !important;
/* 4000  */ }

/* app.css */

/* 4001  */ .testimonial__slider .slick-arrow {
/* 4002  */     position: absolute;
/* 4003  */     bottom: -60px;
/* 4004  */     height: 34px;
/* 4005  */     width: 34px;
/* 4006  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 4007  */     background: var(--white);
/* 4008  */     font-size: 0;
/* 4009  */ }
/* 4010  */ .testimonial__slider .slick-arrow:hover {
/* 4011  */     background: var(--orange);
/* 4012  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 4013  */ }
/* 4014  */ .testimonial__slider .slick-arrow.slick-next {
/* 4015  */     left: 54px;
/* 4016  */ }
/* 4017  */ .testimonial__slider .slick-arrow.slick-disabled {
/* 4018  */     background: var(--white);
/* 4019  */ }
/* 4020  */ .testimonial__slider .slick-arrow.slick-disabled:hover {
/* 4021  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 4022  */ }
/* 4023  */ .testimonial__slider .slick-arrow:hover::before {
/* 4024  */     filter: brightness(1);
/* 4025  */ }
/* 4026  */ .testimonial__slider .slick-arrow::before {
/* 4027  */     content: "";
/* 4028  */     position: absolute;
/* 4029  */     width: 6px;
/* 4030  */     height: 16px;
/* 4031  */     background: url("/wp-content/uploads/2024/07/left-arrow.svg");
/* 4032  */     top: 50%;
/* 4033  */     left: 50%;
/* 4034  */     transform: translate(-50% , -50%);
/* 4035  */     filter: brightness(0);
/* 4036  */     background-size: 100% 100%;
/* 4037  */ }
/* 4038  */ .testimonial__slider .slick-arrow.slick-next:before {
/* 4039  */     transform: translate(-50% , -50%) rotate(180deg);
/* 4040  */ }
/* 4041  */ .testimonial__slider .slick-arrow.slick-disabled::before {
/* 4042  */     filter: brightness(0.9);
/* 4043  */ }
/* 4044  */ .business-principles + .testimonial {
/* 4045  */     padding-top: 0;
/* 4046  */ }
/* 4047  */
/* 4048  */ .testimonial .slick-initialized .slick-slide {
/* 4049  */     margin: 0 10px;
/* 4050  */ }

/* app.css */

/* 4051  */
/* 4052  */ @media (min-width: 768px) {
/* 4053  */     .testimonial {
/* 4054  */         padding: 60px 0;
/* 4055  */     }
/* 4056  */     .testimonial__heading {
/* 4057  */         margin: 0 0 45px;
/* 4058  */     }
/* 4059  */     .testimonial__slider .slick-arrow::before {
/* 4060  */         width: 12px;
/* 4061  */         height: 22px;
/* 4062  */     }
/* 4063  */     .testimonial__slider .slick-arrow.slick-next {
/* 4064  */         left: 64px;
/* 4065  */     }
/* 4066  */     .testimonial__slider {
/* 4067  */         margin: 0 0 40px;
/* 4068  */     }
/* 4069  */     .testimonial__slider--item-cont p {
/* 4070  */         font-size: 1.8rem;
/* 4071  */         line-height: 2.1rem;
/* 4072  */     }
/* 4073  */     .testimonial__slider--auth-cont p {
/* 4074  */         font-size: 16px;
/* 4075  */         line-height: 22px;
/* 4076  */     }
/* 4077  */     .testimonial__img {
/* 4078  */         margin: 0;
/* 4079  */     }
/* 4080  */     .blockquote-img {
/* 4081  */         width: 40px;
/* 4082  */         height: 40px;
/* 4083  */     }
/* 4084  */     .blockquote-img.top {
/* 4085  */         margin: 0 0 30px;
/* 4086  */     }
/* 4087  */     .testimonial__slider--item-cont {
/* 4088  */         padding: 30px;
/* 4089  */     }
/* 4090  */     .testimonial__slider .slick-dots {
/* 4091  */         margin: 30px 0 0;
/* 4092  */     }
/* 4093  */     .testimonial__slider .slick-arrow {
/* 4094  */         bottom: -70px;
/* 4095  */         height: 44px;
/* 4096  */         width: 44px;
/* 4097  */     }
/* 4098  */ }
/* 4099  */
/* 4100  */ @media (min-width: 992px) {

/* app.css */

/* 4101  */     .testimonial {
/* 4102  */         padding: 80px 0;
/* 4103  */     }
/* 4104  */     .testimonial__heading {
/* 4105  */         margin: 0 0 60px;
/* 4106  */     }
/* 4107  */     .testimonial__slider .slick-arrow.slick-next {
/* 4108  */         left: 84px;
/* 4109  */     }
/* 4110  */     .testimonial__slider .slick-arrow {
/* 4111  */         bottom: -90px;
/* 4112  */         height: 54px;
/* 4113  */         width: 54px;
/* 4114  */     }
/* 4115  */     .blockquote-img.top {
/* 4116  */         margin: 0 0 50px;
/* 4117  */     }
/* 4118  */     .blockquote-img {
/* 4119  */         width: 50px;
/* 4120  */         height: 50px;
/* 4121  */     }
/* 4122  */     .testimonial__slider {
/* 4123  */         margin: 0 0 50px;
/* 4124  */     }
/* 4125  */     .testimonial__slider--item-cont p {
/* 4126  */         font-size: 2rem;
/* 4127  */         line-height: 2.5rem;
/* 4128  */     }
/* 4129  */     .testimonial__slider--item-cont {
/* 4130  */         padding: 40px;
/* 4131  */     }
/* 4132  */     .testimonial__slider--auth-cont p {
/* 4133  */         font-size: 18px;
/* 4134  */         line-height: 24px;
/* 4135  */     }
/* 4136  */     .testimonial__slider .slick-dots {
/* 4137  */         margin: 40px 0 0;
/* 4138  */     }
/* 4139  */ }
/* 4140  */
/* 4141  */ @media (min-width: 1200px) {
/* 4142  */     .testimonial {
/* 4143  */         padding: 100px 0;
/* 4144  */     }
/* 4145  */     .testimonial__heading {
/* 4146  */         margin: 0 0 75px;
/* 4147  */     }
/* 4148  */     .blockquote-img {
/* 4149  */         width: 60px;
/* 4150  */         height: 60px;

/* app.css */

/* 4151  */     }
/* 4152  */     .testimonial__slider--item-cont p {
/* 4153  */         font-size: 2.2rem;
/* 4154  */         line-height: 3rem;
/* 4155  */     }
/* 4156  */     .testimonial__slider .slick-dots {
/* 4157  */         margin: 50px 0 0;
/* 4158  */     }
/* 4159  */ }
/* 4160  */
/* 4161  */ @media (min-width: 1441px) {
/* 4162  */     .testimonial {
/* 4163  */         padding: 120px 0;
/* 4164  */     }
/* 4165  */     .testimonial__slider--item-cont p {
/* 4166  */         font-size: 2.4rem;
/* 4167  */         line-height: 3.5rem;
/* 4168  */     }
/* 4169  */     .testimonial__heading {
/* 4170  */         margin: 0 0 90px;
/* 4171  */     }
/* 4172  */ }
/* 4173  */     .great-product {
/* 4174  */     background: linear-gradient(245.24deg, rgba(255, 0, 0, 0.05) 0%, rgba(247, 141, 30, 0.05) 100%);
/* 4175  */     padding: 40px 0;
/* 4176  */     position: relative;
/* 4177  */ }
/* 4178  */ .great-product__heading p {
/* 4179  */     max-width: 730px;
/* 4180  */     width: 100%;
/* 4181  */ }
/* 4182  */ .great-product__slider--item-cont {
/* 4183  */     padding: 24px;
/* 4184  */     background: var(--white);
/* 4185  */     height: calc(100% - 270px);
/* 4186  */ }
/* 4187  */ .great-product__slider--item-cont h4 {
/* 4188  */     margin: 0 0 6px;
/* 4189  */ }
/* 4190  */ .great-product__slider--item-cont p {
/* 4191  */     font-size: 14px;
/* 4192  */     line-height: 22px;
/* 4193  */     margin: 0;
/* 4194  */ }
/* 4195  */ .great-product .container {
/* 4196  */     overflow: hidden;
/* 4197  */ }
/* 4198  */ .great-product__slider .slick-list.draggable {
/* 4199  */     overflow: unset;
/* 4200  */     margin: 0 -20px;

/* app.css */

/* 4201  */ }
/* 4202  */ .great-product__slider--item-img img {
/* 4203  */     width: 100%;
/* 4204  */     height: 270px;
/* 4205  */     object-fit: cover;
/* 4206  */ }
/* 4207  */ .great-product__slider--item-main {
/* 4208  */     margin: 0 20px;
/* 4209  */     overflow: hidden;
/* 4210  */     height: 100%;
/* 4211  */ }
/* 4212  */ .great-product__slider .slick-slide.slick-current.slick-active {
/* 4213  */     margin-top: 0;
/* 4214  */ }
/* 4215  */ .great-product__slider .slick-slide.slick-current.slick-active + .slick-active {
/* 4216  */     margin-top: -60px;
/* 4217  */ }
/* 4218  */ .great-product__slider .slick-slide.slick-current.slick-active + .slick-active + .slick-active {
/* 4219  */     margin-top: -120px;
/* 4220  */ }
/* 4221  */ .great-product__slider .slick-slide.slick-current.slick-active + .slick-active + .slick-active + .slick-active {
/* 4222  */     margin-top: -180px;
/* 4223  */ }
/* 4224  */ .great-product__main {
/* 4225  */     margin-top: 45px;
/* 4226  */ }
/* 4227  */ .great-product__slider .slick-arrow {
/* 4228  */     position: absolute;
/* 4229  */     right: 0;
/* 4230  */     bottom: 0;
/* 4231  */     font-size: 0;
/* 4232  */     height: 34px;
/* 4233  */     width: 34px;
/* 4234  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 4235  */     background: var(--white);
/* 4236  */     display: block;
/* 4237  */     z-index: 1;
/* 4238  */     transition: all 500ms linear;
/* 4239  */ }
/* 4240  */ .great-product__slider .slick-prev.slick-arrow {
/* 4241  */     right: 64px;
/* 4242  */ }
/* 4243  */ .great-product__slider .slick-arrow:hover {
/* 4244  */     background: var(--orange);
/* 4245  */     transition: 500ms linear;
/* 4246  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 4247  */ }
/* 4248  */ .great-product__slider .slick-arrow.slick-disabled,
/* 4249  */ .great-product__slider .slick-arrow.slick-disabled:hover {
/* 4250  */     background: var(--white);

/* app.css */

/* 4251  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 4252  */ }
/* 4253  */ .great-product__slider .slick-arrow:before {
/* 4254  */     content: "";
/* 4255  */     position: absolute;
/* 4256  */     width: 12px;
/* 4257  */     height: 12px;
/* 4258  */     left: 50%;
/* 4259  */     top: 50%;
/* 4260  */     transform: translate(-50% , -50%);
/* 4261  */     background: url("/wp-content/uploads/2024/07/left-arrow.svg");
/* 4262  */     filter: brightness(0);
/* 4263  */     background-size: 100% 100%;
/* 4264  */     transition: all 500ms linear;
/* 4265  */ }
/* 4266  */ .great-product__slider .slick-arrow:hover::before {
/* 4267  */     filter: brightness(1);
/* 4268  */ }
/* 4269  */ .great-product__slider .slick-next.slick-arrow:before {
/* 4270  */     transform: translate(-50% , -50%) rotate(180deg);
/* 4271  */ }
/* 4272  */ .great-product__slider .slick-arrow.slick-disabled:before {
/* 4273  */     filter: brightness(0.9);
/* 4274  */ }
/* 4275  */ .great-product__slider .great-product__slider--item.slick-slide {
/* 4276  */     transition: all 0.5s linear !important;
/* 4277  */ }
/* 4278  */ .great-product__slider {
/* 4279  */     padding: 30px 0;
/* 4280  */ }
/* 4281  */
/* 4282  */ @media (min-width: 600px) {
/* 4283  */ .great-product .slick-initialized .slick-slide{
/* 4284  */     height: 470px;
/* 4285  */ }
/* 4286  */ }
/* 4287  */
/* 4288  */ @media (min-width: 768px) {
/* 4289  */     .great-product__slider--item-cont p {
/* 4290  */         font-size: 16px;
/* 4291  */         line-height: 24px;
/* 4292  */     }
/* 4293  */     .great-product__slider {
/* 4294  */         padding: 0;
/* 4295  */     }
/* 4296  */     .great-product__slider .slick-arrow:before {
/* 4297  */         height: 22px;
/* 4298  */     }
/* 4299  */     .great-product__slider .slick-arrow {
/* 4300  */         height: 44px;

/* app.css */

/* 4301  */         width: 44px;
/* 4302  */     }
/* 4303  */     .great-product__slider .slick-prev.slick-arrow {
/* 4304  */         right: 74px;
/* 4305  */     }
/* 4306  */     .great-product {
/* 4307  */         padding: 60px 0;
/* 4308  */     }
/* 4309  */     .great-product__main {
/* 4310  */         margin-top: 75px;
/* 4311  */     }
/* 4312  */ }
/* 4313  */ @media (min-width: 992px) {
/* 4314  */     .great-product__slider .slick-arrow {
/* 4315  */         height: 54px;
/* 4316  */         width: 54px;
/* 4317  */     }
/* 4318  */     .great-product__slider .slick-prev.slick-arrow {
/* 4319  */         right: 84px;
/* 4320  */     }
/* 4321  */     .great-product {
/* 4322  */         padding: 80px 0;
/* 4323  */     }
/* 4324  */     .great-product .slick-initialized .slick-slide {
/* 4325  */         height: 485px;
/* 4326  */     }
/* 4327  */ }
/* 4328  */ @media (min-width: 1200px) {
/* 4329  */     .great-product {
/* 4330  */         padding: 100px 0;
/* 4331  */     }
/* 4332  */     .great-product__main {
/* 4333  */         margin-top: 130px;
/* 4334  */     }
/* 4335  */     .great-product .slick-initialized .slick-slide {
/* 4336  */         height: 490px;
/* 4337  */     }
/* 4338  */ }
/* 4339  */ @media (min-width: 1441px) {
/* 4340  */     .great-product {
/* 4341  */         padding: 120px 0;
/* 4342  */     }
/* 4343  */     .great-product__slider--item-cont h4  {
/* 4344  */         font-size: 2.6rem;
/* 4345  */         line-height: 3.8rem;
/* 4346  */     }
/* 4347  */     .great-product .slick-initialized .slick-slide {
/* 4348  */         height: 500px;
/* 4349  */     }
/* 4350  */ }

/* app.css */

/* 4351  */ .brain-promise {
/* 4352  */     position: relative;
/* 4353  */     padding: 40px 0;
/* 4354  */ }
/* 4355  */ .brain-promise__img {
/* 4356  */     width: 100%;
/* 4357  */     margin: 0 0 30px;
/* 4358  */ }
/* 4359  */ .brain-promise__list {
/* 4360  */     margin: 50px 0 60px;
/* 4361  */ }
/* 4362  */ .brain-promise p {
/* 4363  */     margin: 0;
/* 4364  */ }
/* 4365  */ .brain-promise__list li {
/* 4366  */     display: flex;
/* 4367  */     width: 100%;
/* 4368  */     justify-content: space-between;
/* 4369  */     margin: 0 0 30px;
/* 4370  */ }
/* 4371  */ .brain-promise__list li:last-child {
/* 4372  */     margin: 0;
/* 4373  */ }
/* 4374  */ .brain-promise__list--img {
/* 4375  */     width: 66px;
/* 4376  */     height: 66px;
/* 4377  */     border: 1px solid var(--orange);
/* 4378  */     position: relative;
/* 4379  */ }
/* 4380  */ .brain-promise__list--img img {
/* 4381  */     filter: brightness(0);
/* 4382  */     position: absolute;
/* 4383  */     left: 50%;
/* 4384  */     top: 50%;
/* 4385  */     transform: translate(-50%, -50%);
/* 4386  */     height: 40px;
/* 4387  */ }
/* 4388  */
/* 4389  */ .brain-promise__list--cont {
/* 4390  */     max-width: calc(100% - 86px);
/* 4391  */     width: 100%;
/* 4392  */ }
/* 4393  */ .brain-promise__list--img:before {
/* 4394  */     content: "";
/* 4395  */     position: absolute;
/* 4396  */     top: 0;
/* 4397  */     right: 0;
/* 4398  */     width: 0;
/* 4399  */     height: 0;
/* 4400  */     border-style: solid;

/* app.css */

/* 4401  */     border-width: 0 26px 26px 0;
/* 4402  */     border-color: transparent #F37023 transparent transparent;
/* 4403  */     transition: all 500ms linear;
/* 4404  */ }
/* 4405  */ .brain-promise__list--cont p {
/* 4406  */     font-size: 14px;
/* 4407  */     line-height: 22px;
/* 4408  */ }
/* 4409  */ .brain-promise__btn {
/* 4410  */     box-shadow: 0px 0px 10px 0px #0000001A;
/* 4411  */ }
/* 4412  */ .brain-promise__btn:hover {
/* 4413  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 4414  */ }
/* 4415  */
/* 4416  */ @media (min-width: 768px) {
/* 4417  */     .brain-promise__img {
/* 4418  */         margin: 0;
/* 4419  */     }
/* 4420  */     .brain-promise {
/* 4421  */         padding: 60px 0;
/* 4422  */     }
/* 4423  */     .brain-promise__list--cont p {
/* 4424  */         font-size: 16px;
/* 4425  */         line-height: 24px;
/* 4426  */     }
/* 4427  */ }
/* 4428  */ @media (min-width: 992px) {
/* 4429  */     .brain-promise {
/* 4430  */         padding: 80px 0;
/* 4431  */     }
/* 4432  */ }
/* 4433  */ @media (min-width: 1200px) {
/* 4434  */     .brain-promise {
/* 4435  */         padding: 100px 0;
/* 4436  */     }
/* 4437  */ }
/* 4438  */ @media (min-width: 1441px) {
/* 4439  */     .brain-promise {
/* 4440  */         padding: 120px 0;
/* 4441  */     }
/* 4442  */ }
/* 4443  */ .case-studies {
/* 4444  */     position: relative;
/* 4445  */     padding: 40px 0;
/* 4446  */     background: var(--black);
/* 4447  */ }
/* 4448  */ .case-studies__heading h2,
/* 4449  */ .case-studies__heading p {
/* 4450  */     color: var(--white);

/* app.css */

/* 4451  */ }
/* 4452  */ .case-studies__heading p {
/* 4453  */     margin: 0;
/* 4454  */ }
/* 4455  */ .case-studies__heading,
/* 4456  */ .case-studies__main {
/* 4457  */     margin-bottom: 50px;
/* 4458  */ }
/* 4459  */ .case-studies__main {
/* 4460  */     justify-content: center;
/* 4461  */ }
/* 4462  */ .case-studies__main--grid {
/* 4463  */     margin: 0 0 30px;
/* 4464  */ }
/* 4465  */ .case-studies__main--grid:last-child {
/* 4466  */     margin: 0;
/* 4467  */ }
/* 4468  */ .case-studies__main .case-studies__main--img {
/* 4469  */     position: relative;
/* 4470  */     overflow: hidden;
/* 4471  */     margin: 0 0 20px;
/* 4472  */ }
/* 4473  */ .case-studies__main .case-studies__main--grid:hover .case-studies__main--img img {
/* 4474  */     transform: scale(1.2);
/* 4475  */     transition: 500ms linear;
/* 4476  */ }
/* 4477  */ .case-studies__main .case-studies__main--img img {
/* 4478  */     transition: all 500ms linear;
/* 4479  */     width: 100%;
/* 4480  */ }
/* 4481  */ .case-studies__main h3 {
/* 4482  */     margin: 0 0 6px;
/* 4483  */     -webkit-line-clamp: 2;
/* 4484  */     overflow: hidden;
/* 4485  */     display: -webkit-box;
/* 4486  */     -webkit-box-orient: vertical;
/* 4487  */     text-overflow: ellipsis;
/* 4488  */     transition: all 500ms linear;
/* 4489  */ }
/* 4490  */ .case-studies__main h3:hover {
/* 4491  */     text-decoration: underline;
/* 4492  */     transition: 500ms linear;
/* 4493  */ }
/* 4494  */ .case-studies__main p {
/* 4495  */     margin: 0;
/* 4496  */     color: var(--orange);
/* 4497  */     font-size: 14px;
/* 4498  */     line-height: 22px;
/* 4499  */ }
/* 4500  */ .case-studies__btn {

/* app.css */

/* 4501  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 4502  */ }
/* 4503  */ .case-studies__btn:hover {
/* 4504  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 4505  */ }
/* 4506  */ .case-studies__description{
/* 4507  */     max-width: 1100px;
/* 4508  */     margin: 0 auto;
/* 4509  */ }
/* 4510  */
/* 4511  */ @media (min-width: 768px) {
/* 4512  */     .case-studies {
/* 4513  */         padding: 60px 0;
/* 4514  */     }
/* 4515  */     .case-studies__heading,
/* 4516  */     .case-studies__main {
/* 4517  */         margin-bottom: 60px;
/* 4518  */     }
/* 4519  */     .case-studies__main p {
/* 4520  */         font-size: 16px;
/* 4521  */         line-height: 24px;
/* 4522  */     }
/* 4523  */ }
/* 4524  */ @media (min-width: 992px) {
/* 4525  */     .case-studies__main--grid {
/* 4526  */         margin: 0;
/* 4527  */     }
/* 4528  */     .case-studies {
/* 4529  */         padding: 80px 0;
/* 4530  */     }
/* 4531  */     .case-studies__heading,
/* 4532  */     .case-studies__main {
/* 4533  */         margin-bottom: 70px;
/* 4534  */     }
/* 4535  */ }
/* 4536  */ @media (min-width: 1200px) {
/* 4537  */     .case-studies {
/* 4538  */         padding: 100px 0;
/* 4539  */     }
/* 4540  */     .case-studies__heading,
/* 4541  */     .case-studies__main {
/* 4542  */         margin-bottom: 80px;
/* 4543  */     }
/* 4544  */     .case-studies__main h3 {
/* 4545  */         font-size: 30px;
/* 4546  */         line-height: 36px;
/* 4547  */     }
/* 4548  */ }
/* 4549  */ @media (min-width: 1441px) {
/* 4550  */     .case-studies {

/* app.css */

/* 4551  */         padding: 120px 0;
/* 4552  */     }
/* 4553  */     .case-studies__heading,
/* 4554  */     .case-studies__main {
/* 4555  */         margin-bottom: 90px;
/* 4556  */     }
/* 4557  */ }
/* 4558  */ .insights-news {
/* 4559  */     position: relative;
/* 4560  */     padding: 40px 0;
/* 4561  */ }
/* 4562  */ .insights-news__heading,
/* 4563  */ .insights-news__main {
/* 4564  */     margin-bottom: 30px;
/* 4565  */ }
/* 4566  */ .insights-news__main--grid {
/* 4567  */     display: flex;
/* 4568  */     align-items: center;
/* 4569  */     position: relative;
/* 4570  */     background: var(--white);
/* 4571  */     padding: 4px;
/* 4572  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 4573  */     justify-content: space-between;
/* 4574  */     flex-wrap: wrap;
/* 4575  */     height: auto;
/* 4576  */ }
/* 4577  */ .insights-news__main--grid:hover {
/* 4578  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 4579  */ }
/* 4580  */ .insights-news__main--img {
/* 4581  */     max-width: 100%;
/* 4582  */     width: 100%;
/* 4583  */     margin: 0 0 30px;
/* 4584  */ }
/* 4585  */ .insights-news__main--cont {
/* 4586  */     max-width: 100%;
/* 4587  */     width: 100%;
/* 4588  */     padding: 0 15px;
/* 4589  */     margin: 0 0 30px;
/* 4590  */ }
/* 4591  */ .insights-news__main--img img {
/* 4592  */     width: 100%;
/* 4593  */ }
/* 4594  */ .insights-news__main--cont p {
/* 4595  */     font-size: 14px;
/* 4596  */     line-height: 18px;
/* 4597  */     margin: 0;
/* 4598  */ }
/* 4599  */ .insights-news__main--cont h4 {
/* 4600  */     -webkit-line-clamp: 3;

/* app.css */

/* 4601  */     overflow: hidden;
/* 4602  */     display: -webkit-box;
/* 4603  */     -webkit-box-orient: vertical;
/* 4604  */     text-overflow: ellipsis;
/* 4605  */     font-size: 1.5rem;
/* 4606  */     line-height: 18px;
/* 4607  */ }
/* 4608  */ .insights-news__main--grid:before {
/* 4609  */     content: none;
/* 4610  */     position: absolute;
/* 4611  */     top: 0;
/* 4612  */     right: 0;
/* 4613  */     width: 0;
/* 4614  */     height: 0;
/* 4615  */     border-style: solid;
/* 4616  */     border-width: 0 20px 20px 0;
/* 4617  */     border-color: transparent var(--black) transparent transparent;
/* 4618  */     transition: all 500ms linear;
/* 4619  */ }
/* 4620  */ .insights-news__main--grid:hover::before {
/* 4621  */     border-color: transparent var(--orange) transparent transparent;
/* 4622  */     transition: 500ms linear;
/* 4623  */ }
/* 4624  */ .insights-news__main--grid:hover .insights-news__main--cont h4 {
/* 4625  */     color: var(--orange);
/* 4626  */     transition: 500ms linear;
/* 4627  */ }
/* 4628  */ .insights-news__main {
/* 4629  */     row-gap: 30px;
/* 4630  */ }
/* 4631  */ .insights-news__btn {
/* 4632  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 4633  */ }
/* 4634  */ .insights-news__btn:hover {
/* 4635  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 4636  */ }
/* 4637  */ .insights-news__description{
/* 4638  */     max-width: 1100px;
/* 4639  */     margin: 0 auto;
/* 4640  */ }
/* 4641  */
/* 4642  */ @media (min-width: 768px) {
/* 4643  */     .insights-news__main--img {
/* 4644  */         max-width: 45%;
/* 4645  */         margin: 0;
/* 4646  */     }
/* 4647  */     .insights-news__main--cont {
/* 4648  */         max-width: 55%;
/* 4649  */         margin: 0;
/* 4650  */     }

/* app.css */

/* 4651  */     .insights-news {
/* 4652  */         padding: 60px 0;
/* 4653  */     }
/* 4654  */     .insights-news__heading,
/* 4655  */     .insights-news__main {
/* 4656  */         margin-bottom: 45px;
/* 4657  */     }
/* 4658  */     .insights-news__main--grid:before {
/* 4659  */         content: "";
/* 4660  */     }
/* 4661  */ }
/* 4662  */ @media (min-width: 992px) {
/* 4663  */     .insights-news {
/* 4664  */         padding: 80px 0;
/* 4665  */     }
/* 4666  */     .insights-news__heading,
/* 4667  */     .insights-news__main {
/* 4668  */         margin-bottom: 60px;
/* 4669  */     }
/* 4670  */     .insights-news__main--cont h4 {
/* 4671  */         font-size: 1.7rem;
/* 4672  */         line-height: 24px;
/* 4673  */     }
/* 4674  */     .insights-news__main--cont p {
/* 4675  */         font-size: 16px;
/* 4676  */         line-height: 24px;
/* 4677  */         margin: 0;
/* 4678  */     }
/* 4679  */ }
/* 4680  */ @media (min-width: 1200px) {
/* 4681  */     .insights-news {
/* 4682  */         padding: 100px 0;
/* 4683  */     }
/* 4684  */     .insights-news__heading,
/* 4685  */     .insights-news__main {
/* 4686  */         margin-bottom: 75px;
/* 4687  */     }
/* 4688  */     .insights-news__main--cont h4 {
/* 4689  */         font-size: 2.4rem;
/* 4690  */         line-height: 3.4rem;
/* 4691  */     }
/* 4692  */     .insights-news__main--grid:before {
/* 4693  */         border-width: 0 36px 36px 0;
/* 4694  */     }
/* 4695  */ }
/* 4696  */ @media (min-width: 1441px) {
/* 4697  */     .insights-news {
/* 4698  */         padding: 120px 0;
/* 4699  */     }
/* 4700  */     .insights-news__heading,

/* app.css */

/* 4701  */     .insights-news__main {
/* 4702  */         margin-bottom: 90px;
/* 4703  */     }
/* 4704  */ }
/* 4705  */
/* 4706  */ .explore-more {
/* 4707  */     position: relative;
/* 4708  */     background: linear-gradient(245.24deg, rgba(255, 0, 0, 0.05) 0%, rgba(247, 141, 30, 0.05) 100%);
/* 4709  */     padding: 40px 0;
/* 4710  */ }
/* 4711  */ .explore-more__heading {
/* 4712  */     justify-content: center;
/* 4713  */     margin-bottom: 30px;
/* 4714  */ }
/* 4715  */ .explore-more__main--grid-img {
/* 4716  */     position: relative;
/* 4717  */     height: 100%;
/* 4718  */ }
/* 4719  */ .explore-more__main--grid-img img {
/* 4720  */     width: 100%;
/* 4721  */ }
/* 4722  */ .explore-more__main--grid-img:before {
/* 4723  */     content: "";
/* 4724  */     position: absolute;
/* 4725  */     width: 100%;
/* 4726  */     height: 100%;
/* 4727  */     background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
/* 4728  */ }
/* 4729  */ .explore-more__main--grid {
/* 4730  */     position: relative;
/* 4731  */     height: 100%;
/* 4732  */ }
/* 4733  */ .explore-more__main--grid-cont {
/* 4734  */     position: absolute;
/* 4735  */     bottom: 0;
/* 4736  */     padding: 0 20px 20px;
/* 4737  */ }
/* 4738  */ .explore-more__main--box {
/* 4739  */     display: flex;
/* 4740  */     flex-direction: column;
/* 4741  */     gap: 30px;
/* 4742  */     justify-content: stretch;
/* 4743  */     height: 100%;
/* 4744  */     margin: 30px 0 0;
/* 4745  */ }
/* 4746  */ .explore-more__main--box .explore-more__main--grid {
/* 4747  */     height: 100%;
/* 4748  */     display: block;
/* 4749  */ }
/* 4750  */

/* app.css */

/* 4751  */ @media (min-width: 768px) {
/* 4752  */     .explore-more {
/* 4753  */         padding: 60px 0;
/* 4754  */     }
/* 4755  */     .explore-more__main--grid-cont {
/* 4756  */         padding: 0 30px 30px;
/* 4757  */     }
/* 4758  */     .explore-more__main--box {
/* 4759  */         margin: 0;
/* 4760  */     }
/* 4761  */     .explore-more__heading {
/* 4762  */         margin-bottom: 45px;
/* 4763  */     }
/* 4764  */ }
/* 4765  */ @media (min-width: 992px) {
/* 4766  */     .explore-more {
/* 4767  */         padding: 80px 0;
/* 4768  */     }
/* 4769  */     .explore-more__main--grid-cont {
/* 4770  */         padding: 0 40px 40px;
/* 4771  */     }
/* 4772  */     .explore-more__heading {
/* 4773  */         margin-bottom: 60px;
/* 4774  */     }
/* 4775  */ }
/* 4776  */ @media (min-width: 1200px) {
/* 4777  */     .explore-more {
/* 4778  */         padding: 100px 0;
/* 4779  */     }
/* 4780  */     .explore-more__main--grid-cont {
/* 4781  */         padding: 0 50px 50px;
/* 4782  */     }
/* 4783  */     .explore-more__heading {
/* 4784  */         margin-bottom: 75px;
/* 4785  */     }
/* 4786  */ }
/* 4787  */ @media (min-width: 1441px) {
/* 4788  */     .explore-more {
/* 4789  */         padding: 120px 0;
/* 4790  */     }
/* 4791  */     .explore-more__main--grid-cont {
/* 4792  */         padding: 0 60px 60px;
/* 4793  */     }
/* 4794  */     .explore-more__heading {
/* 4795  */         margin-bottom: 90px;
/* 4796  */     }
/* 4797  */ }
/* 4798  */ .contact-us {
/* 4799  */     position: relative;
/* 4800  */     padding: 40px 0;

/* app.css */

/* 4801  */ }
/* 4802  */
/* 4803  */ .contact-us__heading {
/* 4804  */     margin-bottom: 30px;
/* 4805  */ }
/* 4806  */
/* 4807  */ .contact-us__heading p {
/* 4808  */     margin: 0;
/* 4809  */ }
/* 4810  */
/* 4811  */ .contact-us__branch {
/* 4812  */     display: flex;
/* 4813  */     align-items: start;
/* 4814  */     justify-content: space-between;
/* 4815  */     padding-bottom: 40px;
/* 4816  */     border-bottom: 1px solid var(--lblack);
/* 4817  */     flex-wrap: wrap;
/* 4818  */ }
/* 4819  */
/* 4820  */ .contact-us__branch .contact-us__branch--grid {
/* 4821  */     max-width: 100%;
/* 4822  */     width: 100%;
/* 4823  */     margin: 0 0 30px;
/* 4824  */ }
/* 4825  */
/* 4826  */ .contact-us__branch .contact-us__branch--grid:last-child {
/* 4827  */     margin: 0;
/* 4828  */ }
/* 4829  */
/* 4830  */ .contact-us__branch .contact-us__branch--grid img {
/* 4831  */     margin: 0 0 20px;
/* 4832  */ }
/* 4833  */
/* 4834  */ .contact-us__branch .contact-us__branch--grid h3 {
/* 4835  */     color: var(--black);
/* 4836  */     margin: 0 0 8px;
/* 4837  */     font-weight: 700;
/* 4838  */ }
/* 4839  */
/* 4840  */ .contact-us__branch .contact-us__branch--grid p {
/* 4841  */     font-size: 14px;
/* 4842  */     line-height: 22px;
/* 4843  */ }
/* 4844  */
/* 4845  */ .contact-us__contact {
/* 4846  */     padding: 40px 0;
/* 4847  */     border-bottom: 1px solid var(--lblack);
/* 4848  */ }
/* 4849  */
/* 4850  */ .contact-us__contact--list {

/* app.css */

/* 4851  */     display: flex;
/* 4852  */     align-items: center;
/* 4853  */     justify-content: space-between;
/* 4854  */     flex-wrap: wrap;
/* 4855  */     margin: 0;
/* 4856  */ }
/* 4857  */
/* 4858  */ .contact-us__contact--list li {
/* 4859  */     display: flex;
/* 4860  */     align-items: center;
/* 4861  */     max-width: 100%;
/* 4862  */     width: 100%;
/* 4863  */     margin: 0 0 30px;
/* 4864  */     justify-content: space-between;
/* 4865  */ }
/* 4866  */
/* 4867  */ .contact-us__contact--list li:last-child {
/* 4868  */     margin: 0;
/* 4869  */ }
/* 4870  */
/* 4871  */ .contact-us__contact--list-img {
/* 4872  */     max-width: 46px;
/* 4873  */     width: 100%;
/* 4874  */     height: 46px;
/* 4875  */ }
/* 4876  */
/* 4877  */ .contact-us__contact--list-cont {
/* 4878  */     max-width: calc(100% - 56px);
/* 4879  */     width: 100%;
/* 4880  */ }
/* 4881  */
/* 4882  */ .contact-us__contact--list-cont p {
/* 4883  */     font-size: 16px;
/* 4884  */     line-height: 24px;
/* 4885  */     color: var(--lblack);
/* 4886  */     margin: 0;
/* 4887  */ }
/* 4888  */
/* 4889  */ .contact-us__contact--list-cont h4 {
/* 4890  */     font-weight: 500;
/* 4891  */     margin: 0;
/* 4892  */ }
/* 4893  */
/* 4894  */ .contact-us__social {
/* 4895  */     padding-top: 40px;
/* 4896  */ }
/* 4897  */
/* 4898  */ .contact-us__social h4 {
/* 4899  */     font-weight: 600;
/* 4900  */     margin: 0 0 20px;

/* app.css */

/* 4901  */ }
/* 4902  */
/* 4903  */ .contact-us__social--list {
/* 4904  */     display: flex;
/* 4905  */     align-items: center;
/* 4906  */     margin: 0;
/* 4907  */     gap: 24px;
/* 4908  */     flex-wrap: wrap;
/* 4909  */ }
/* 4910  */
/* 4911  */ .contact-us__social--list li {
/* 4912  */     height: 46px;
/* 4913  */     width: 46px;
/* 4914  */     margin: 0;
/* 4915  */ }
/* 4916  */
/* 4917  */ .contact-us__get-in-touch {
/* 4918  */     padding: 20px;
/* 4919  */     position: relative;
/* 4920  */     border: 2px solid var(--orange);
/* 4921  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 4922  */ }
/* 4923  */
/* 4924  */ .contact-us__get-in-touch:before {
/* 4925  */     content: "";
/* 4926  */     position: absolute;
/* 4927  */     top: 0;
/* 4928  */     right: 0;
/* 4929  */     width: 0;
/* 4930  */     height: 0;
/* 4931  */     border-style: solid;
/* 4932  */     border-width: 0 64px 64px 0;
/* 4933  */     border-color: transparent #F37023 transparent transparent;
/* 4934  */     transition: all 500ms linear;
/* 4935  */ }
/* 4936  */
/* 4937  */ .contact-us__get-in-touch h3 {
/* 4938  */     color: var(--black);
/* 4939  */     margin: 0 0 6px;
/* 4940  */ }
/* 4941  */
/* 4942  */ .contact-us__get-in-touch p {
/* 4943  */     font-size: 18px;
/* 4944  */     line-height: 26px;
/* 4945  */     margin: 0;
/* 4946  */ }
/* 4947  */
/* 4948  */ .contact-us__get-in-touch form {
/* 4949  */     margin: 40px 0 0;
/* 4950  */ }

/* app.css */

/* 4951  */
/* 4952  */ .contact-us__form--btn {
/* 4953  */     position: relative;
/* 4954  */     display: inline-block;
/* 4955  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 4956  */ }
/* 4957  */
/* 4958  */ .contact-us__form--btn:before {
/* 4959  */     content: "";
/* 4960  */     position: absolute;
/* 4961  */     top: 0;
/* 4962  */     right: 0;
/* 4963  */     width: 0;
/* 4964  */     height: 0;
/* 4965  */     border-style: solid;
/* 4966  */     border-width: 0 22px 22px 0;
/* 4967  */     border-color: transparent #F37023 transparent transparent;
/* 4968  */     transition: all 500ms linear;
/* 4969  */     z-index: 1;
/* 4970  */ }
/* 4971  */
/* 4972  */ .contact-us__form--btn input.wpcf7-submit {
/* 4973  */     border: 0;
/* 4974  */     width: 100%;
/* 4975  */     height: 100%;
/* 4976  */     padding: 10px 25px;
/* 4977  */     border: 1px solid var(--orange);
/* 4978  */ }
/* 4979  */
/* 4980  */ .contact-us__form--btn span.wpcf7-spinner {
/* 4981  */     position: absolute;
/* 4982  */ }
/* 4983  */
/* 4984  */ .contact-us__main--cont {
/* 4985  */     padding: 0 15px;
/* 4986  */     margin: 0 0 40px;
/* 4987  */ }
/* 4988  */
/* 4989  */ .contact-us__form-main {
/* 4990  */     display: flex;
/* 4991  */     align-items: center;
/* 4992  */     justify-content: space-between;
/* 4993  */     margin: 0 0 20px;
/* 4994  */     flex-wrap: wrap;
/* 4995  */ }
/* 4996  */
/* 4997  */ .contact-us__form-main span {
/* 4998  */     max-width: 100%;
/* 4999  */     margin: 0 0 20px;
/* 5000  */ }

/* app.css */

/* 5001  */
/* 5002  */ .contact-us__form-main span:last-child {
/* 5003  */     margin: 0;
/* 5004  */ }
/* 5005  */
/* 5006  */ .contact-us__form-num {
/* 5007  */     margin-bottom: 20px;
/* 5008  */ }
/* 5009  */
/* 5010  */ .contact-us__form-num .intl-tel-input.separate-dial-code .selected-dial-code {
/* 5011  */     color: #000;
/* 5012  */ }
/* 5013  */
/* 5014  */ .contact-us__form-num .intl-tel-input .selected-flag {
/* 5015  */     padding: 0 20px 0 8px;
/* 5016  */     background: transparent;
/* 5017  */ }
/* 5018  */
/* 5019  */ .choose-file span.wpcf7-form-control-wrap {
/* 5020  */     width: 100%;
/* 5021  */     height: 100%;
/* 5022  */     display: block;
/* 5023  */     position: absolute;
/* 5024  */     top: 0;
/* 5025  */     left: 0;
/* 5026  */ }
/* 5027  */
/* 5028  */ .contact-us__form-num .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
/* 5029  */     background: transparent;
/* 5030  */ }
/* 5031  */
/* 5032  */ .contact-us__form-num .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {
/* 5033  */     padding-left: 85px;
/* 5034  */ }
/* 5035  */
/* 5036  */ .contact-us__form-num .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {
/* 5037  */     padding-left: 95px;
/* 5038  */ }
/* 5039  */
/* 5040  */ .contact-us__form-num .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {
/* 5041  */     padding-left: 110px
/* 5042  */ }
/* 5043  */
/* 5044  */ .contact-us__form-num .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {
/* 5045  */     padding-left: 120px
/* 5046  */ }
/* 5047  */
/* 5048  */ .choose-file {
/* 5049  */     position: relative;
/* 5050  */     min-height: 4.5em;

/* app.css */

/* 5051  */     transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
/* 5052  */     cursor: pointer;
/* 5053  */     padding: 15px;
/* 5054  */     border: 1px dashed var(--lblack);
/* 5055  */     margin: 20px 0;
/* 5056  */ }
/* 5057  */
/* 5058  */ .choose-file input[type="file"] {
/* 5059  */     font-size: 0;
/* 5060  */     position: absolute;
/* 5061  */     left: 0;
/* 5062  */     top: 0;
/* 5063  */     opacity: 0;
/* 5064  */     width: 100%;
/* 5065  */     height: 100%;
/* 5066  */     opacity: 0;
/* 5067  */     min-height: 6em;
/* 5068  */     outline: 0;
/* 5069  */     visibility: visible;
/* 5070  */     cursor: pointer;
/* 5071  */     border-radius: 10px;
/* 5072  */ }
/* 5073  */
/* 5074  */ .choose-file .inside-div label.icon {
/* 5075  */     font-size: 18px;
/* 5076  */     font-weight: 500;
/* 5077  */     line-height: 26px;
/* 5078  */     color: var(--black);
/* 5079  */     display: block;
/* 5080  */     margin: 0 0 5px;
/* 5081  */ }
/* 5082  */
/* 5083  */ .choose-file .inside-div span.text {
/* 5084  */     font-size: 14px;
/* 5085  */     font-weight: 400;
/* 5086  */     line-height: 18px;
/* 5087  */     letter-spacing: 0.01em;
/* 5088  */     color: var(--lblack);
/* 5089  */     display: block;
/* 5090  */ }
/* 5091  */
/* 5092  */ .choose-file .inside-div {
/* 5093  */     position: relative;
/* 5094  */     padding-left: 40px;
/* 5095  */ }
/* 5096  */
/* 5097  */ .choose-file .inside-div::before {
/* 5098  */     content: "";
/* 5099  */     position: absolute;
/* 5100  */     background-image: url("/wp-content/themes/brainstream/images/attach-icon.svg");

/* app.css */

/* 5101  */     width: 30px;
/* 5102  */     height: 30px;
/* 5103  */     left: 0;
/* 5104  */     background-size: 100% 100%;
/* 5105  */ }
/* 5106  */
/* 5107  */ .contact-us input,
/* 5108  */ .contact-us textarea {
/* 5109  */     color: var(--black);
/* 5110  */ }
/* 5111  */ .contact-us .wpcf7-not-valid-tip {
/* 5112  */     bottom: -22px;
/* 5113  */ }
/* 5114  */
/* 5115  */
/* 5116  */ @media (min-width: 576px) {
/* 5117  */     .contact-us__form-main span {
/* 5118  */         max-width: calc(50% - 15px);
/* 5119  */         margin: 0;
/* 5120  */     }
/* 5121  */
/* 5122  */     .contact-us__form-num {
/* 5123  */         margin-bottom: 40px;
/* 5124  */     }
/* 5125  */ }
/* 5126  */
/* 5127  */ @media (min-width: 768px) {
/* 5128  */     .contact-us__branch .contact-us__branch--grid p {
/* 5129  */         font-size: 16px;
/* 5130  */         line-height: 24px;
/* 5131  */     }
/* 5132  */
/* 5133  */     .contact-us__get-in-touch {
/* 5134  */         padding: 40px;
/* 5135  */     }
/* 5136  */
/* 5137  */     .contact-us {
/* 5138  */         padding: 60px 0;
/* 5139  */     }
/* 5140  */
/* 5141  */     .contact-us__heading {
/* 5142  */         margin-bottom: 45px;
/* 5143  */     }
/* 5144  */
/* 5145  */     .contact-us__branch .contact-us__branch--grid {
/* 5146  */         max-width: calc(50% - 30px);
/* 5147  */         margin: 0;
/* 5148  */     }
/* 5149  */
/* 5150  */     .contact-us__contact--list li {

/* app.css */

/* 5151  */         max-width: calc(50% - 30px);
/* 5152  */     }
/* 5153  */
/* 5154  */     .contact-us__contact--list li:last-child,
/* 5155  */     .contact-us__contact--list li:nth-last-child(2) {
/* 5156  */         margin: 0;
/* 5157  */     }
/* 5158  */
/* 5159  */     .contact-us__form-main {
/* 5160  */         margin: 0 0 40px;
/* 5161  */     }
/* 5162  */
/* 5163  */     .choose-file {
/* 5164  */         margin: 40px 0;
/* 5165  */         padding: 34px;
/* 5166  */     }
/* 5167  */
/* 5168  */     .choose-file .inside-div {
/* 5169  */         padding-left: 60px;
/* 5170  */     }
/* 5171  */
/* 5172  */     .choose-file .inside-div::before {
/* 5173  */         width: 50px;
/* 5174  */         height: 50px;
/* 5175  */     }
/* 5176  */     .contact-us .wpcf7-not-valid-tip {
/* 5177  */         bottom: -30px;
/* 5178  */     }
/* 5179  */ }
/* 5180  */
/* 5181  */ @media (min-width: 992px) {
/* 5182  */     .contact-us__main--cont {
/* 5183  */         margin: 0;
/* 5184  */     }
/* 5185  */
/* 5186  */     .contact-us__branch .contact-us__branch--grid p {
/* 5187  */         font-size: 18px;
/* 5188  */         line-height: 26px;
/* 5189  */     }
/* 5190  */
/* 5191  */     .contact-us {
/* 5192  */         padding: 80px 0;
/* 5193  */     }
/* 5194  */
/* 5195  */     .contact-us__heading {
/* 5196  */         margin-bottom: 60px;
/* 5197  */     }
/* 5198  */
/* 5199  */     .contact-us__branch .contact-us__branch--grid {
/* 5200  */         max-width: 100%;

/* app.css */

/* 5201  */         margin: 0 0 30px;
/* 5202  */     }
/* 5203  */
/* 5204  */     .contact-us__contact--list li {
/* 5205  */         max-width: 100%;
/* 5206  */     }
/* 5207  */
/* 5208  */     .contact-us__contact--list li:nth-last-child(2) {
/* 5209  */         margin: 0 0 30px;
/* 5210  */     }
/* 5211  */
/* 5212  */     .contact-us__form-main span {
/* 5213  */         max-width: 100%;
/* 5214  */         margin: 0 0 40px;
/* 5215  */     }
/* 5216  */
/* 5217  */     .contact-us__form-main span:last-child {
/* 5218  */         margin: 0;
/* 5219  */     }
/* 5220  */
/* 5221  */     .contact-us__form-num {
/* 5222  */         margin-bottom: 40px;
/* 5223  */     }
/* 5224  */
/* 5225  */     .choose-file {
/* 5226  */         padding: 20px;
/* 5227  */     }
/* 5228  */
/* 5229  */     .choose-file .inside-div::before {
/* 5230  */         width: 30px;
/* 5231  */         height: 30px;
/* 5232  */     }
/* 5233  */
/* 5234  */     .choose-file .inside-div {
/* 5235  */         padding-left: 40px;
/* 5236  */     }
/* 5237  */ }
/* 5238  */
/* 5239  */ @media (min-width: 1200px) {
/* 5240  */
/* 5241  */     .contact-us {
/* 5242  */         padding: 100px 0;
/* 5243  */     }
/* 5244  */
/* 5245  */     .contact-us__main--cont {
/* 5246  */         padding: 90px 60px 0 15px;
/* 5247  */     }
/* 5248  */
/* 5249  */     .contact-us__heading {
/* 5250  */         margin-bottom: 75px;

/* app.css */

/* 5251  */     }
/* 5252  */
/* 5253  */     .contact-us__branch .contact-us__branch--grid {
/* 5254  */         max-width: calc(50% - 30px);
/* 5255  */         margin: 0;
/* 5256  */     }
/* 5257  */ }
/* 5258  */
/* 5259  */ @media (min-width: 1440px) {
/* 5260  */     .contact-us__contact--list li {
/* 5261  */         max-width: calc(50% - 10px);
/* 5262  */     }
/* 5263  */
/* 5264  */     .contact-us__contact--list li:nth-last-child(2) {
/* 5265  */         margin: 0;
/* 5266  */     }
/* 5267  */
/* 5268  */     .contact-us {
/* 5269  */         padding: 120px 0;
/* 5270  */     }
/* 5271  */
/* 5272  */     .contact-us__heading {
/* 5273  */         margin-bottom: 90px;
/* 5274  */     }
/* 5275  */
/* 5276  */     .contact-us__form-main span {
/* 5277  */         max-width: calc(50% - 15px);
/* 5278  */         margin: 0;
/* 5279  */     }
/* 5280  */
/* 5281  */     .contact-us__form-num {
/* 5282  */         margin-bottom: 40px;
/* 5283  */     }
/* 5284  */
/* 5285  */     .choose-file {
/* 5286  */         padding: 34px;
/* 5287  */     }
/* 5288  */
/* 5289  */     .choose-file .inside-div::before {
/* 5290  */         width: 50px;
/* 5291  */         height: 50px;
/* 5292  */     }
/* 5293  */
/* 5294  */     .choose-file .inside-div {
/* 5295  */         padding-left: 60px;
/* 5296  */     }
/* 5297  */
/* 5298  */     .contact-us__main--cont {
/* 5299  */         padding: 125px 60px 0 15px;
/* 5300  */     }

/* app.css */

/* 5301  */ }
/* 5302  */ .footer {
/* 5303  */     background: var(--black);
/* 5304  */     padding: 40px 0 0;
/* 5305  */ }
/* 5306  */ .footer__top {
/* 5307  */     margin-bottom: 30px;
/* 5308  */ }
/* 5309  */ .footer__content--logo {
/* 5310  */     margin: 0 0 30px;
/* 5311  */ }
/* 5312  */ .footer__content p {
/* 5313  */     color: #999999;
/* 5314  */     font-size: 14px;
/* 5315  */     line-height: 20px;
/* 5316  */     margin: 0 0 30px;
/* 5317  */ }
/* 5318  */ .footer__content h4 {
/* 5319  */     color: var(--white);
/* 5320  */     margin: 0 0 50px;
/* 5321  */ }
/* 5322  */ .footer__content--map {
/* 5323  */     width: 100%;
/* 5324  */ }
/* 5325  */ .footer__menu h4 {
/* 5326  */     color: var(--white);
/* 5327  */     margin: 0 0 30px;
/* 5328  */ }
/* 5329  */ .footer__menu ul li a{
/* 5330  */     color: #999999 ;
/* 5331  */ }
/* 5332  */
/* 5333  */
/* 5334  */ .footer__menu ul li a.active,
/* 5335  */ .footer__menu ul li a:hover  {
/* 5336  */       color: var(--white);
/* 5337  */       transition: all 0.3s;
/* 5338  */   }
/* 5339  */
/* 5340  */ .footer__menu ul li:last-child {
/* 5341  */     margin: 0;
/* 5342  */ }
/* 5343  */ .footer__menu--grid {
/* 5344  */     margin: 0 0 24px;
/* 5345  */ }
/* 5346  */ .footer__bottom {
/* 5347  */     padding: 30px 0;
/* 5348  */     border-top: 1px solid rgba(255, 255, 255, 0.4);
/* 5349  */ }
/* 5350  */

/* app.css */

/* 5351  */ .footer__bottom p {
/* 5352  */     font-size: 18px;
/* 5353  */     line-height: 26px;
/* 5354  */     color: #999999;
/* 5355  */     margin: 0;
/* 5356  */ }
/* 5357  */ .footer__bottom #footer-menu {
/* 5358  */     margin: 30px 0 0;
/* 5359  */     display: flex;
/* 5360  */     align-items: center;
/* 5361  */     gap: 24px;
/* 5362  */     flex-wrap: wrap;
/* 5363  */     justify-content: center;
/* 5364  */ }
/* 5365  */ .footer__bottom #footer-menu li a {
/* 5366  */     color: #999999;
/* 5367  */     margin: 0;
/* 5368  */ }
/* 5369  */ .footer__bottom #footer-menu li a:hover {
/* 5370  */     color: #fff;
/* 5371  */ }
/* 5372  */
/* 5373  */ .footer__menu--grid:last-child {
/* 5374  */     margin: 0;
/* 5375  */ }
/* 5376  */ .footer__content {
/* 5377  */     margin: 0 0 30px;
/* 5378  */ }
/* 5379  */ .footer__bottom p {
/* 5380  */     text-align: center;
/* 5381  */ }
/* 5382  */
/* 5383  */ @media (min-width: 768px) {
/* 5384  */     .footer {
/* 5385  */         padding: 60px 0 0;
/* 5386  */     }
/* 5387  */     .footer__menu--grid:last-child,
/* 5388  */     .footer__menu--grid:nth-last-child(2) {
/* 5389  */         margin: 0;
/* 5390  */     }
/* 5391  */     .footer__content p {
/* 5392  */         margin: 0 0 45px;
/* 5393  */         font-size: 16px;
/* 5394  */         line-height: 23px;
/* 5395  */     }
/* 5396  */     .footer__top {
/* 5397  */         margin-bottom: 45px;
/* 5398  */     }
/* 5399  */     .footer__menu--grid {
/* 5400  */         margin: 0 0 44px;

/* app.css */

/* 5401  */     }
/* 5402  */ }
/* 5403  */ @media (min-width: 992px) {
/* 5404  */     .footer__bottom #footer-menu {
/* 5405  */         gap: 15px;
/* 5406  */     }
/* 5407  */     .footer {
/* 5408  */         padding: 80px 0 0;
/* 5409  */     }
/* 5410  */     .footer__bottom p {
/* 5411  */         text-align: unset;
/* 5412  */     }
/* 5413  */     .footer__bottom #footer-menu {
/* 5414  */         justify-content: end;
/* 5415  */         margin: 0;
/* 5416  */     }
/* 5417  */     .footer__content {
/* 5418  */         margin: 0;
/* 5419  */     }
/* 5420  */     .footer__content p {
/* 5421  */         margin: 0 0 60px;
/* 5422  */         font-size: 18px;
/* 5423  */         line-height: 26px;
/* 5424  */     }
/* 5425  */     .footer__menu--grid {
/* 5426  */         margin: 0 0 64px;
/* 5427  */     }
/* 5428  */     .footer__top {
/* 5429  */         margin-bottom: 60px;
/* 5430  */     }
/* 5431  */ }
/* 5432  */ @media (min-width: 1200px) {
/* 5433  */     .footer__bottom #footer-menu {
/* 5434  */         gap: 18px;
/* 5435  */     }
/* 5436  */     .footer {
/* 5437  */         padding: 100px 0 0;
/* 5438  */     }
/* 5439  */     .footer__menu ul li {
/* 5440  */         font-size: 18px;
/* 5441  */         line-height: 26px;
/* 5442  */         margin-bottom: 1.2rem;
/* 5443  */     }
/* 5444  */     .footer__menu--grid {
/* 5445  */         margin: 0 0 84px;
/* 5446  */     }
/* 5447  */     .footer__content p {
/* 5448  */         margin: 0 0 75px;
/* 5449  */     }
/* 5450  */     .footer__top {

/* app.css */

/* 5451  */         margin-bottom: 75px;
/* 5452  */     }
/* 5453  */     .footer__bottom #footer-menu li a {
/* 5454  */         font-size: 16px;
/* 5455  */     }
/* 5456  */ }
/* 5457  */ @media (min-width: 1441px) {
/* 5458  */     .footer__bottom .col-12 {
/* 5459  */         padding: 0;
/* 5460  */     }
/* 5461  */     .footer {
/* 5462  */         padding: 120px 0 0;
/* 5463  */     }
/* 5464  */     .footer__content h4,
/* 5465  */     .footer__menu h4 {
/* 5466  */         font-size: 26px;
/* 5467  */         line-height: 36px;
/* 5468  */     }
/* 5469  */     .footer__content p {
/* 5470  */         margin: 0 0 90px;
/* 5471  */     }
/* 5472  */     .footer__top {
/* 5473  */         margin-bottom: 90px;
/* 5474  */     }
/* 5475  */     .footer__bottom #footer-menu li a {
/* 5476  */         font-size: 18px;
/* 5477  */     }
/* 5478  */     .footer__bottom #footer-menu {
/* 5479  */         gap: 21px;
/* 5480  */     }
/* 5481  */ }
/* 5482  */ .who-we-are {
/* 5483  */     position: relative;
/* 5484  */     padding: 40px 0;
/* 5485  */ }
/* 5486  */ .who-we-are__heading {
/* 5487  */     max-width: 1200px;
/* 5488  */     width: 100%;
/* 5489  */     margin: 0 auto 30px;
/* 5490  */     text-align: center;
/* 5491  */ }
/* 5492  */ .who-we-are__heading p,
/* 5493  */ .who-we-are__main--inner p {
/* 5494  */     margin: 0;
/* 5495  */ }
/* 5496  */ .who-we-are__main--inner {
/* 5497  */     max-width: 315px;
/* 5498  */     width: 100%;
/* 5499  */     display: block;
/* 5500  */     margin: 0 auto;

/* app.css */

/* 5501  */     text-align: center;
/* 5502  */     padding: 16px 0;
/* 5503  */ }
/* 5504  */ .who-we-are__main--inner h2 {
/* 5505  */     color: var(--orange);
/* 5506  */     margin: 0 0 6px;
/* 5507  */ }
/* 5508  */ .who-we-are__main--grid {
/* 5509  */     border-color: rgba(0, 0, 0, 0.05);
/* 5510  */     border-width: 0 0px 2px 0;
/* 5511  */     border-style: solid;
/* 5512  */ }
/* 5513  */ .who-we-are__main--grid:nth-child(3n) {
/* 5514  */     border-width: 0 0 2px 0;
/* 5515  */ }
/* 5516  */
/* 5517  */ @media (min-width: 576px) {
/* 5518  */     .who-we-are__main--grid {
/* 5519  */         border-width: 0 2px 2px 0;
/* 5520  */     }
/* 5521  */     .who-we-are__main--grid:nth-last-child(1),
/* 5522  */     .who-we-are__main--grid:nth-last-child(2) {
/* 5523  */         border-bottom: 0;
/* 5524  */     }
/* 5525  */     .who-we-are__main--grid:nth-child(3n) {
/* 5526  */         border-width: 0 2px 2px 0;
/* 5527  */     }
/* 5528  */     .who-we-are__main--grid:nth-child(2n) {
/* 5529  */         border-width: 0 0 2px 0;
/* 5530  */     }
/* 5531  */
/* 5532  */ }
/* 5533  */ @media (min-width: 768px) {
/* 5534  */     .who-we-are {
/* 5535  */         padding: 60px 0;
/* 5536  */     }
/* 5537  */     .who-we-are__heading {
/* 5538  */         margin: 0 auto 45px;
/* 5539  */     }
/* 5540  */     .who-we-are__main--inner {
/* 5541  */         padding: 26px 0;
/* 5542  */     }
/* 5543  */     .who-we-are__main--grid {
/* 5544  */         border-width: 0 2px 2px 0;
/* 5545  */     }
/* 5546  */     .who-we-are__main--grid:nth-last-child(1),
/* 5547  */     .who-we-are__main--grid:nth-last-child(2),
/* 5548  */     .who-we-are__main--grid:nth-last-child(3) {
/* 5549  */         border-bottom: 0;
/* 5550  */     }

/* app.css */

/* 5551  */     .who-we-are__main--grid:nth-child(2n) {
/* 5552  */         border-width: 0 2px 2px 0;
/* 5553  */     }
/* 5554  */     .who-we-are__main--grid:nth-child(3n) {
/* 5555  */         border-width: 0 0 2px 0;
/* 5556  */     }
/* 5557  */ }
/* 5558  */ @media (min-width: 992px) {
/* 5559  */     .who-we-are {
/* 5560  */         padding: 80px 0;
/* 5561  */     }
/* 5562  */     .who-we-are__heading {
/* 5563  */         margin: 0 auto 60px;
/* 5564  */     }
/* 5565  */     .who-we-are__main--inner {
/* 5566  */         padding: 36px 0;
/* 5567  */     }
/* 5568  */ }
/* 5569  */ @media (min-width: 1200px) {
/* 5570  */     .who-we-are {
/* 5571  */         padding: 100px 0;
/* 5572  */     }
/* 5573  */     .who-we-are__heading {
/* 5574  */         margin: 0 auto 75px;
/* 5575  */     }
/* 5576  */ }
/* 5577  */ @media (min-width: 1441px) {
/* 5578  */     .who-we-are {
/* 5579  */         padding: 120px 0;
/* 5580  */     }
/* 5581  */     .who-we-are__heading {
/* 5582  */         margin: 0 auto 90px;
/* 5583  */     }
/* 5584  */ }
/* 5585  */ .main-banner {
/* 5586  */     position: relative;
/* 5587  */ }
/* 5588  */ .main-banner.service_page{
/* 5589  */     background-color: #000000;
/* 5590  */ }
/* 5591  */ .main-banner.service_page .main-banner__bg{
/* 5592  */     display: none;
/* 5593  */ }
/* 5594  */ .main-banner__bg {
/* 5595  */     position: absolute;
/* 5596  */     width: 100%;
/* 5597  */     object-fit: cover;
/* 5598  */     left: 0;
/* 5599  */     top: 0;
/* 5600  */     height: 100%;

/* app.css */

/* 5601  */ }
/* 5602  */ .main-banner__container {
/* 5603  */     padding: 40px 15px;
/* 5604  */ }
/* 5605  */ .main-banner__container p {
/* 5606  */     margin: 0 0 30px;
/* 5607  */     color: var(--white);
/* 5608  */ }
/* 5609  */ .main-banner__btn {
/* 5610  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 5611  */ }
/* 5612  */ .main-banner__btn:hover {
/* 5613  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 5614  */ }
/* 5615  */
/* 5616  */ @media (min-width: 768px) {
/* 5617  */     .main-banner.service_page .main-banner__bg{
/* 5618  */         display: block;
/* 5619  */     }
/* 5620  */     .main-banner__container {
/* 5621  */         padding: 80px 15px;
/* 5622  */     }
/* 5623  */ }
/* 5624  */ @media (min-width: 992px) {
/* 5625  */     .main-banner__container {
/* 5626  */         padding: 110px 15px;
/* 5627  */     }
/* 5628  */     .main-banner__container p {
/* 5629  */         margin: 0 0 40px;
/* 5630  */     }
/* 5631  */ }
/* 5632  */ @media (min-width: 1200px) {
/* 5633  */     .main-banner__container {
/* 5634  */         padding: 140px 15px;
/* 5635  */     }
/* 5636  */     .main-banner__container p {
/* 5637  */         margin: 0 0 50px;
/* 5638  */     }
/* 5639  */ }
/* 5640  */ @media (min-width: 1441px) {
/* 5641  */     .main-banner__container {
/* 5642  */         padding: 170px 15px;
/* 5643  */     }
/* 5644  */ }
/* 5645  */ .why-we-are {
/* 5646  */     margin-top: -1px;
/* 5647  */     padding: 40px 0;
/* 5648  */     background: var(--black)
/* 5649  */ }
/* 5650  */ .why-we-are__heading {

/* app.css */

/* 5651  */     margin: 0 0 30px;
/* 5652  */ }
/* 5653  */ .why-we-are__heading h2 {
/* 5654  */     margin: 0 0 20px;
/* 5655  */     color: var(--white);
/* 5656  */ }
/* 5657  */ .why-we-are__heading p {
/* 5658  */     color: var(--white);
/* 5659  */     margin: 0;
/* 5660  */ }
/* 5661  */ .why-we-are__main--inner {
/* 5662  */     min-height: 264px;
/* 5663  */     padding: 40px 40px 85px;
/* 5664  */     position: relative;
/* 5665  */     background: var(--white);
/* 5666  */     box-shadow: 0px 0px 10px 0px rgba(243, 112, 35, 0.1);
/* 5667  */ }
/* 5668  */ .why-we-are__main--inner:before {
/* 5669  */     content: "";
/* 5670  */     position: absolute;
/* 5671  */     top: 0;
/* 5672  */     right: 0;
/* 5673  */     width: 0;
/* 5674  */     height: 0;
/* 5675  */     border-style: solid;
/* 5676  */     border-width: 0 66px 66px 0;
/* 5677  */     border-color: transparent #F37023 transparent transparent;
/* 5678  */ }
/* 5679  */ .why-we-are__main {
/* 5680  */     justify-content: center;
/* 5681  */     row-gap: 30px;
/* 5682  */ }
/* 5683  */ .why-we-are__main--grid {
/* 5684  */     margin: 0 0 30px;
/* 5685  */ }
/* 5686  */ .why-we-are__main--grid:last-child {
/* 5687  */     margin: 0;
/* 5688  */ }
/* 5689  */ .why-we-are__main--inner-back {
/* 5690  */     opacity: 0;
/* 5691  */     position: absolute;
/* 5692  */     top: 0;
/* 5693  */     left: 0;
/* 5694  */     background: var(--orange);
/* 5695  */     padding: 20px;
/* 5696  */     height: 100%;
/* 5697  */ }
/* 5698  */ .why-we-are__main--inner h4 {
/* 5699  */     margin: 0 0 16px;
/* 5700  */ }

/* app.css */

/* 5701  */ .why-we-are__main--inner h3 {
/* 5702  */     color: var(--black);
/* 5703  */     margin: 0;
/* 5704  */ }
/* 5705  */ .why-we-are__main--inner:hover .why-we-are__main--inner-back {
/* 5706  */     opacity: 1;
/* 5707  */ }
/* 5708  */ .why-we-are__main--inner-back> * {
/* 5709  */     color: var(--white);
/* 5710  */ }
/* 5711  */ .why-we-are__main--inner-back h3 {
/* 5712  */     color: var(--white);
/* 5713  */     margin-bottom: 5px;
/* 5714  */ }
/* 5715  */ .why-we-are__main--inner-back h4 {
/* 5716  */     margin: 0 0 6px;
/* 5717  */     font-weight: 400;
/* 5718  */ }
/* 5719  */  .why-we-are__main--inner-back p {
/* 5720  */     font-size: 14px;
/* 5721  */     line-height: 22px;
/* 5722  */     margin: 0;
/* 5723  */     font-weight: 400;
/* 5724  */ }
/* 5725  */
/* 5726  */ .custom-ecommerce + .why-we-are {
/* 5727  */     padding-top: 0;
/* 5728  */ }
/* 5729  */
/* 5730  */ @media (min-width: 768px) {
/* 5731  */     .why-we-are {
/* 5732  */         padding: 60px 0;
/* 5733  */     }
/* 5734  */     .why-we-are__main--inner-back p {
/* 5735  */         font-size: 16px;
/* 5736  */         line-height: 24px;
/* 5737  */     }
/* 5738  */     .why-we-are__heading {
/* 5739  */         margin: 0 0 45px;
/* 5740  */     }
/* 5741  */ }
/* 5742  */ @media (min-width: 992px) {
/* 5743  */     .why-we-are {
/* 5744  */         padding: 80px 0;
/* 5745  */     }
/* 5746  */     .why-we-are__main--inner-back h3 {
/* 5747  */         font-size: 26px;
/* 5748  */         line-height: 34px;
/* 5749  */         margin: 0 0 6px;
/* 5750  */         font-weight: 600;

/* app.css */

/* 5751  */     }
/* 5752  */     .why-we-are__main--inner-back p {
/* 5753  */         font-size: 18px;
/* 5754  */         line-height: 26px;
/* 5755  */     }
/* 5756  */     .why-we-are__heading {
/* 5757  */         margin: 0 0 60px;
/* 5758  */     }
/* 5759  */ }
/* 5760  */ @media (min-width: 1200px) {
/* 5761  */     .why-we-are {
/* 5762  */         padding: 100px 0;
/* 5763  */     }
/* 5764  */     .why-we-are__heading {
/* 5765  */         margin: 0 0 75px;
/* 5766  */     }
/* 5767  */ }
/* 5768  */ @media (min-width: 1440px) {
/* 5769  */     .why-we-are {
/* 5770  */         padding: 120px 0;
/* 5771  */     }
/* 5772  */     .why-we-are__heading {
/* 5773  */         margin: 0 0 90px;
/* 5774  */     }
/* 5775  */     .why-we-are__main--grid {
/* 5776  */         margin: 0;
/* 5777  */     }
/* 5778  */ }
/* 5779  */ .business-principles {
/* 5780  */     padding: 40px 0;
/* 5781  */     position: relative;
/* 5782  */ }
/* 5783  */ .business-principles__heading {
/* 5784  */     max-width: 1200px;
/* 5785  */     width: 100%;
/* 5786  */     margin: 0 auto 30px;
/* 5787  */ }
/* 5788  */ .business-principles__main--grid {
/* 5789  */     display: flex;
/* 5790  */     align-items: center;
/* 5791  */     flex-wrap: wrap;
/* 5792  */     justify-content: space-between;
/* 5793  */     padding: 30px;
/* 5794  */     background: rgba(243, 112, 35, 0.05);
/* 5795  */     margin: 0 0 30px;
/* 5796  */ }
/* 5797  */ .business-principles__main--grid:last-child {
/* 5798  */     margin: 0;
/* 5799  */ }
/* 5800  */ .business-principles__main--grid-img,

/* app.css */

/* 5801  */ .business-principles__main--grid-content {
/* 5802  */     max-width: 100%;
/* 5803  */     width: 100%;
/* 5804  */ }
/* 5805  */ .business-principles__main--grid-btn {
/* 5806  */     box-shadow: 0px 0px 10px 0px rgba(243, 112, 35, 0.1);
/* 5807  */     margin: 20px 0 0;
/* 5808  */ }
/* 5809  */ .business-principles__main--grid-btn:hover {
/* 5810  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 5811  */ }
/* 5812  */ .business-principles__main--grid-img img {
/* 5813  */     width: 100%;
/* 5814  */ }
/* 5815  */ .business-principles__main--grid-content h3 {
/* 5816  */     color: var(--black);
/* 5817  */     margin: 0 0 16px;
/* 5818  */     font-weight: 700;
/* 5819  */ }
/* 5820  */ .business-principles__main--grid:nth-child(odd) {
/* 5821  */     flex-direction: row-reverse;
/* 5822  */ }
/* 5823  */ .business-principles__main--grid-content p {
/* 5824  */     margin: 0 0 22px;
/* 5825  */ }
/* 5826  */ .business-principles__main--grid-content ul {
/* 5827  */     margin: 0;
/* 5828  */ }
/* 5829  */ .business-principles__main--grid-content ul li {
/* 5830  */     margin: 0 0 20px;
/* 5831  */     font-size: 16px;
/* 5832  */     line-height: 30px;
/* 5833  */     font-weight: 500;
/* 5834  */     color: var(--black);
/* 5835  */     padding: 0 0 0 42px;
/* 5836  */     position: relative;
/* 5837  */ }
/* 5838  */ .business-principles__main--grid-content ul li:before {
/* 5839  */     content: "";
/* 5840  */     position: absolute;
/* 5841  */     background: url("/wp-content/themes/brainstream/images/rectangle-icon.svg");
/* 5842  */     width: 26px;
/* 5843  */     height: 26px;
/* 5844  */     left: 0;
/* 5845  */     top: 5px;
/* 5846  */ }
/* 5847  */ .business-principles__main--grid-content ul li:last-child {
/* 5848  */     margin: 0;
/* 5849  */ }
/* 5850  */

/* app.css */

/* 5851  */ .business-principles.with-back {
/* 5852  */     background: var(--black);
/* 5853  */ }
/* 5854  */ .business-principles.with-back h2,
/* 5855  */ .business-principles.with-back ul li{
/* 5856  */     color: var(--white);
/* 5857  */ }
/* 5858  */ .business-principles.with-back .business-principles__main--grid {
/* 5859  */     flex-direction: row;
/* 5860  */     background: rgba(255, 255, 255, 0.1);
/* 5861  */ }
/* 5862  */ .business-principles.with-back .business-principles__main--grid-content h3,
/* 5863  */ .business-principles.with-back .business-principles__main--grid-content p {
/* 5864  */     color: var(--white);
/* 5865  */ }
/* 5866  */ .business-principles.with-back .business-principles__main--grid:nth-child(even) {
/* 5867  */     flex-direction: row-reverse;
/* 5868  */ }
/* 5869  */ .business-principles__main--grid-img {
/* 5870  */     margin-bottom: 30px;
/* 5871  */ }
/* 5872  */
/* 5873  */
/* 5874  */ @media (min-width: 768px) {
/* 5875  */     .business-principles__main--grid-btn {
/* 5876  */         margin: 30px 0 0;
/* 5877  */     }
/* 5878  */     .business-principles__heading {
/* 5879  */         margin: 0 auto 45px;
/* 5880  */     }
/* 5881  */     .business-principles__main--grid-img,
/* 5882  */     .business-principles__main--grid-content {
/* 5883  */         max-width: 47%;
/* 5884  */         width: 100%;
/* 5885  */     }
/* 5886  */     .business-principles__main--grid {
/* 5887  */         padding: 40px 45px;
/* 5888  */         margin: 0 0 60px;
/* 5889  */     }
/* 5890  */     .business-principles {
/* 5891  */         padding: 60px 0;
/* 5892  */     }
/* 5893  */     .business-principles__main--grid-content ul li {
/* 5894  */         font-size: 18px;
/* 5895  */         line-height: 32px;
/* 5896  */     }
/* 5897  */     .business-principles__main--grid-img {
/* 5898  */         margin-bottom: 0px;
/* 5899  */     }
/* 5900  */ }

/* app.css */

/* 5901  */ @media (min-width: 992px) {
/* 5902  */     .business-principles__main--grid-btn {
/* 5903  */         margin: 40px 0 0;
/* 5904  */     }
/* 5905  */     .business-principles {
/* 5906  */         padding: 80px 0;
/* 5907  */     }
/* 5908  */     .business-principles__heading {
/* 5909  */         margin: 0 auto 60px;
/* 5910  */     }
/* 5911  */     .business-principles__main--grid {
/* 5912  */         padding: 50px 60px;
/* 5913  */     }
/* 5914  */     .business-principles__main--grid-content ul li {
/* 5915  */         font-size: 20px;
/* 5916  */         line-height: 30px;
/* 5917  */     }
/* 5918  */ }
/* 5919  */ @media (min-width: 1200px) {
/* 5920  */     .business-principles__main--grid-btn {
/* 5921  */         margin: 50px 0 0;
/* 5922  */     }
/* 5923  */     .business-principles {
/* 5924  */         padding: 100px 0;
/* 5925  */     }
/* 5926  */     .business-principles__heading {
/* 5927  */         margin: 0 auto 75px;
/* 5928  */     }
/* 5929  */     .business-principles__main--grid {
/* 5930  */         padding: 60px 75px;
/* 5931  */     }
/* 5932  */     .business-principles__main--grid-content ul li {
/* 5933  */         font-size: 22px;
/* 5934  */         line-height: 32px;
/* 5935  */     }
/* 5936  */ }
/* 5937  */ @media (min-width: 1441px) {
/* 5938  */     .business-principles__main--grid-btn {
/* 5939  */         margin: 60px 0 0;
/* 5940  */     }
/* 5941  */     .business-principles {
/* 5942  */         padding: 120px 0;
/* 5943  */     }
/* 5944  */     .business-principles__main--grid-content p {
/* 5945  */         font-size: 24px;
/* 5946  */         line-height: 32px;
/* 5947  */         margin: 0 0 42px;
/* 5948  */     }
/* 5949  */     .business-principles__heading {
/* 5950  */         margin: 0 auto 90px;

/* app.css */

/* 5951  */     }
/* 5952  */     .business-principles__main--grid {
/* 5953  */         padding: 60px 90px;
/* 5954  */     }
/* 5955  */     .business-principles__main--grid-content ul li {
/* 5956  */         font-size: 24px;
/* 5957  */         line-height: 34px;
/* 5958  */     }
/* 5959  */ }
/* 5960  */
/* 5961  */ .our-culture {
/* 5962  */     padding: 40px 0;
/* 5963  */     background: linear-gradient(245.24deg, rgba(255, 0, 0, 0.05) 0%, rgba(247, 141, 30, 0.05) 100%);
/* 5964  */ }
/* 5965  */ .our-culture__heading {
/* 5966  */     max-width: 1080px;
/* 5967  */     width: 100%;
/* 5968  */     margin: 0 -15px 30px;
/* 5969  */ }
/* 5970  */ .our-culture__heading p {
/* 5971  */     margin: 0;
/* 5972  */ }
/* 5973  */ .our-culture__group img {
/* 5974  */     display: block;
/* 5975  */     width: 100%;
/* 5976  */ }
/* 5977  */ .our-culture__group {
/* 5978  */     margin: 0 -15px 30px;
/* 5979  */ }
/* 5980  */ .our-culture__main {
/* 5981  */     margin: 0 -15px 30px;
/* 5982  */     justify-content: start;
/* 5983  */ }
/* 5984  */ .our-culture__main--grid .our-culture__main--inner {
/* 5985  */     padding: 15px;
/* 5986  */ }
/* 5987  */ .our-culture__main--grid {
/* 5988  */     border-bottom: 2px solid rgba(243, 112, 35, 0.1);
/* 5989  */ }
/* 5990  */ .our-culture__main--grid:last-child {
/* 5991  */     border-right: 0;
/* 5992  */ }
/* 5993  */ .our-culture__main--inner h3 {
/* 5994  */     color: #000;
/* 5995  */     margin: 0 0 18px;
/* 5996  */ }
/* 5997  */ .our-culture__main--inner p {
/* 5998  */     font-size: 18px;
/* 5999  */     line-height: 28px;
/* 6000  */     margin: 0;

/* app.css */

/* 6001  */ }
/* 6002  */ .our-culture__main--grid:nth-child(2) .our-culture__main--inner {
/* 6003  */     padding: 15px;
/* 6004  */ }
/* 6005  */
/* 6006  */ @media (min-width: 768px) {
/* 6007  */     .our-culture__main--grid {
/* 6008  */         border-right: 2px solid rgba(243, 112, 35, 0.1);
/* 6009  */         border-bottom: 0;
/* 6010  */     }
/* 6011  */     .our-culture__main--grid:nth-child(2),
/* 6012  */     .our-culture__main--grid:nth-child(3) {
/* 6013  */         border-right: 0;
/* 6014  */     }
/* 6015  */     .our-culture__main--grid:nth-child(3) {
/* 6016  */        margin-top: 30px;
/* 6017  */     }
/* 6018  */     .our-culture {
/* 6019  */         padding: 60px 0;
/* 6020  */     }
/* 6021  */     .our-culture__heading {
/* 6022  */         margin: 0 -15px 45px;
/* 6023  */     }
/* 6024  */     .our-culture__group,
/* 6025  */     .our-culture__main {
/* 6026  */         margin: 0 0 45px;
/* 6027  */     }
/* 6028  */ }
/* 6029  */ @media (min-width: 992px) {
/* 6030  */     .our-culture__main--grid:last-child {
/* 6031  */         margin-top: 0;
/* 6032  */     }
/* 6033  */     .our-culture__main--grid:nth-child(2) {
/* 6034  */         border-right: 2px solid rgba(243, 112, 35, 0.1);
/* 6035  */     }
/* 6036  */     .our-culture__main--grid .our-culture__main--inner {
/* 6037  */         padding: 30px 15px;
/* 6038  */     }
/* 6039  */     .our-culture__main--grid {
/* 6040  */         border-right: 2px solid rgba(243, 112, 35, 0.1);
/* 6041  */         border-bottom: 0;
/* 6042  */     }
/* 6043  */     .our-culture__main--grid:nth-child(2) .our-culture__main--inner {
/* 6044  */         padding: 30px 15px;
/* 6045  */     }
/* 6046  */     .our-culture {
/* 6047  */         padding: 80px 0;
/* 6048  */     }
/* 6049  */     .our-culture__heading {
/* 6050  */         margin: 0 -15px 60px;

/* app.css */

/* 6051  */     }
/* 6052  */     .our-culture__group,
/* 6053  */     .our-culture__main {
/* 6054  */         margin: 0 0 60px;
/* 6055  */     }
/* 6056  */ }
/* 6057  */ @media (min-width: 1200px) {
/* 6058  */     .our-culture__main--grid:nth-child(2) .our-culture__main--inner {
/* 6059  */         padding: 30px 45px;
/* 6060  */     }
/* 6061  */     .our-culture__main--grid .our-culture__main--inner {
/* 6062  */         padding: 30px 45px 30px 31px;
/* 6063  */     }
/* 6064  */     .our-culture {
/* 6065  */         padding: 100px 0;
/* 6066  */     }
/* 6067  */     .our-culture__heading {
/* 6068  */         margin: 0 auto 75px;
/* 6069  */     }
/* 6070  */     .our-culture__group,
/* 6071  */     .our-culture__main {
/* 6072  */         margin: 0 0 75px;
/* 6073  */     }
/* 6074  */ }
/* 6075  */ @media (min-width: 1440px) {
/* 6076  */     .our-culture {
/* 6077  */         padding: 120px 0;
/* 6078  */     }
/* 6079  */     .our-culture__heading {
/* 6080  */         margin: 0 auto 90px;
/* 6081  */     }
/* 6082  */     .our-culture__group,
/* 6083  */     .our-culture__main {
/* 6084  */         margin: 0 -15px 90px;
/* 6085  */     }
/* 6086  */ }
/* 6087  */ .global-reach {
/* 6088  */     padding: 40px 0;
/* 6089  */     position: relative;
/* 6090  */ }
/* 6091  */ .global-reach__heading {
/* 6092  */     width: 100%;
/* 6093  */     margin: 0 auto 30px;
/* 6094  */ }
/* 6095  */ .global-reach__heading p {
/* 6096  */     margin: 0;
/* 6097  */ }
/* 6098  */ .global-reach__main img {
/* 6099  */     width: 100%;
/* 6100  */ }

/* app.css */

/* 6101  */
/* 6102  */ @media (min-width: 768px) {
/* 6103  */     .global-reach {
/* 6104  */         padding: 60px 0;
/* 6105  */     }
/* 6106  */     .global-reach__heading {
/* 6107  */         margin: 0 -15px 45px;
/* 6108  */     }
/* 6109  */ }
/* 6110  */ @media (min-width: 992px) {
/* 6111  */     .global-reach {
/* 6112  */         padding: 80px 0;
/* 6113  */     }
/* 6114  */     .global-reach__heading {
/* 6115  */         margin: 0 -15px 60px;
/* 6116  */     }
/* 6117  */ }
/* 6118  */ @media (min-width: 1200px) {
/* 6119  */     .global-reach {
/* 6120  */         padding: 100px 0;
/* 6121  */     }
/* 6122  */     .global-reach__heading {
/* 6123  */         margin: 0 -15px 75px;
/* 6124  */     }
/* 6125  */ }
/* 6126  */ @media (min-width: 1440px) {
/* 6127  */     .global-reach {
/* 6128  */         padding: 120px 0;
/* 6129  */     }
/* 6130  */     .global-reach__heading {
/* 6131  */         margin: 0 auto 90px;
/* 6132  */         max-width: 1230px;
/* 6133  */     }
/* 6134  */ }
/* 6135  */ .meet-team {
/* 6136  */     position: relative;
/* 6137  */     padding: 40px 0;
/* 6138  */ }
/* 6139  */ .meet-team__heading,
/* 6140  */ .meet-team__team {
/* 6141  */     margin-bottom: 30px;
/* 6142  */ }
/* 6143  */ .meet-team__heading p {
/* 6144  */     max-width: 960px;
/* 6145  */     width: 100%;
/* 6146  */     margin: 0 auto;
/* 6147  */     text-align: center;
/* 6148  */ }
/* 6149  */ .meet-team__main {
/* 6150  */     display: flex;

/* app.css */

/* 6151  */     align-items: center;
/* 6152  */     /* justify-content: space-between; */
/* 6153  */     flex-wrap: wrap;
/* 6154  */     gap: 20px;
/* 6155  */ }
/* 6156  */ .meet-team__main--inner {
/* 6157  */     height: 100%;
/* 6158  */     max-width: calc((100% / 2) - 10px);
/* 6159  */     width: 100%;
/* 6160  */     background: linear-gradient(245.24deg, rgba(255, 0, 0, 0.05) 0%, rgba(247, 141, 30, 0.05) 100%);
/* 6161  */     box-shadow: 0px 0px 10px 0px rgba(243, 112, 35, 0.1);
/* 6162  */     position: relative;
/* 6163  */     filter: grayscale(1);
/* 6164  */     transition: all 500ms linear;
/* 6165  */ }
/* 6166  */ .meet-team__main--inner img {
/* 6167  */     width: 100%;
/* 6168  */ }
/* 6169  */ .meet-team__main--inner:hover {
/* 6170  */     filter: grayscale(0);
/* 6171  */     cursor: pointer;
/* 6172  */     transition: 500ms linear;
/* 6173  */ }
/* 6174  */ .meet-team__main--inner:before {
/* 6175  */     content: "";
/* 6176  */     position: absolute;
/* 6177  */     background: url("/wp-content/themes/brainstream/images/case-icon.svg");
/* 6178  */     width: 60px;
/* 6179  */     height: 60px;
/* 6180  */     right: 16px;
/* 6181  */     top: 16px;
/* 6182  */     z-index: -1;
/* 6183  */ }
/* 6184  */ .meet-team__button--btn {
/* 6185  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 6186  */ }
/* 6187  */ .meet-team__button--btn:hover {
/* 6188  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 6189  */ }
/* 6190  */
/* 6191  */ @media (min-width: 576px) {
/* 6192  */     .meet-team__main--inner {
/* 6193  */         max-width: calc((100% / 3) - 14px);
/* 6194  */     }
/* 6195  */ }
/* 6196  */ @media (min-width: 768px) {
/* 6197  */     .meet-team {
/* 6198  */         padding: 60px 0;
/* 6199  */     }
/* 6200  */     .meet-team__heading,

/* app.css */

/* 6201  */     .meet-team__team {
/* 6202  */         margin-bottom: 45px;
/* 6203  */     }
/* 6204  */     .meet-team__main--inner {
/* 6205  */         max-width: calc((100% / 4) - 15px);
/* 6206  */     }
/* 6207  */ }
/* 6208  */ @media (min-width: 992px) {
/* 6209  */     .meet-team {
/* 6210  */         padding: 80px 0;
/* 6211  */     }
/* 6212  */     .meet-team__heading,
/* 6213  */     .meet-team__team {
/* 6214  */         margin-bottom: 60px;
/* 6215  */     }
/* 6216  */     .meet-team__main--inner {
/* 6217  */         max-width: calc((100% / 6) - 17px);
/* 6218  */     }
/* 6219  */ }
/* 6220  */ @media (min-width: 1200px) {
/* 6221  */     .meet-team {
/* 6222  */         padding: 100px 0;
/* 6223  */     }
/* 6224  */     .meet-team__heading,
/* 6225  */     .meet-team__team {
/* 6226  */         margin-bottom: 75px;
/* 6227  */     }
/* 6228  */     .meet-team__main--inner {
/* 6229  */         max-width: calc((100% / 8) - 18px);
/* 6230  */     }
/* 6231  */ }
/* 6232  */ @media (min-width: 1441px) {
/* 6233  */     .meet-team {
/* 6234  */         padding: 120px 0;
/* 6235  */     }
/* 6236  */     .meet-team__heading,
/* 6237  */     .meet-team__team {
/* 6238  */         margin-bottom: 90px;
/* 6239  */     }
/* 6240  */     .meet-team__main--inner {
/* 6241  */         max-width: calc((100% / 10) - 18px);
/* 6242  */     }
/* 6243  */ }
/* 6244  */ .review {
/* 6245  */     padding: 40px 0;
/* 6246  */     background: var(--black);
/* 6247  */     position: relative;
/* 6248  */ }
/* 6249  */ .review__heading {
/* 6250  */     margin-bottom: 30px;

/* app.css */

/* 6251  */ }
/* 6252  */ .review__heading h2 {
/* 6253  */     color: var(--white);
/* 6254  */     max-width: 1400px;
/* 6255  */     width: 100%;
/* 6256  */     text-align: center;
/* 6257  */     margin: 0 auto;
/* 6258  */ }
/* 6259  */ .review__main {
/* 6260  */     justify-content: center;
/* 6261  */     align-items: stretch;
/* 6262  */ }
/* 6263  */ .review__main--grid {
/* 6264  */     border-right: 0;
/* 6265  */     padding: 20px 15px;
/* 6266  */     border-bottom: 2px solid rgba(255, 255, 255, 0.1);
/* 6267  */ }
/* 6268  */ .review__main--grid:last-child {
/* 6269  */     border-bottom: 0;
/* 6270  */ }
/* 6271  */ .review__main--inner {
/* 6272  */     max-width: 390px;
/* 6273  */     width: 100%;
/* 6274  */     margin: 0 auto;
/* 6275  */ }
/* 6276  */ .review__main--inner p {
/* 6277  */     color: var(--white);
/* 6278  */     margin: 0;
/* 6279  */ }
/* 6280  */ .review__main--inner img {
/* 6281  */     margin: 0 0 30px;
/* 6282  */ }
/* 6283  */
/* 6284  */ @media (min-width: 576px) {
/* 6285  */     .review__main--grid {
/* 6286  */         border-right: 2px solid rgba(255, 255, 255, 0.1);
/* 6287  */     }
/* 6288  */     .review__main--grid:nth-child(2n),.review__main--grid:last-child {
/* 6289  */         border-right: 0;
/* 6290  */     }
/* 6291  */     .review__main--grid:last-child {
/* 6292  */         border-bottom: 0;
/* 6293  */     }
/* 6294  */ }
/* 6295  */ @media (min-width: 768px) {
/* 6296  */     .review {
/* 6297  */         padding: 60px 0;
/* 6298  */     }
/* 6299  */     .review__heading {
/* 6300  */         margin-bottom: 45px;

/* app.css */

/* 6301  */     }
/* 6302  */     .review__main--grid:nth-child(2n) {
/* 6303  */         border-right: 2px solid rgba(255, 255, 255, 0.1);
/* 6304  */     }
/* 6305  */     .review__main--grid {
/* 6306  */         border-right: 2px solid rgba(255, 255, 255, 0.1);
/* 6307  */         padding: 30px 15px;
/* 6308  */     }
/* 6309  */     .review__main--grid:nth-child(3n), .review__main--grid:last-child {
/* 6310  */         border-right: 0;
/* 6311  */     }
/* 6312  */     .review__main--grid:last-child, .review__main--grid:nth-last-child(2) {
/* 6313  */         border-bottom: 0;
/* 6314  */     }
/* 6315  */ }
/* 6316  */ @media (min-width: 992px) {
/* 6317  */     .review {
/* 6318  */         padding: 80px 0;
/* 6319  */     }
/* 6320  */     .review__heading {
/* 6321  */         margin-bottom: 60px;
/* 6322  */     }
/* 6323  */     .review__main--grid {
/* 6324  */         padding: 40px 15px;
/* 6325  */     }
/* 6326  */ }
/* 6327  */ @media (min-width: 1200px) {
/* 6328  */     .review {
/* 6329  */         padding: 100px 0;
/* 6330  */     }
/* 6331  */     .review__heading {
/* 6332  */         margin-bottom: 75px;
/* 6333  */     }
/* 6334  */ }
/* 6335  */ @media (min-width: 1441px) {
/* 6336  */     .review {
/* 6337  */         padding: 120px 0;
/* 6338  */     }
/* 6339  */     .review__heading {
/* 6340  */         margin-bottom: 90px;
/* 6341  */     }
/* 6342  */ }
/* 6343  */ .crm-service {
/* 6344  */     position: relative;
/* 6345  */     padding: 40px 0;
/* 6346  */ }
/* 6347  */ .crm-service__heading {
/* 6348  */     margin-bottom: 30px;
/* 6349  */ }
/* 6350  */ .crm-service__head {

/* app.css */

/* 6351  */     max-width: 1215px;
/* 6352  */     width: 100%;
/* 6353  */     margin: 0 auto;
/* 6354  */ }
/* 6355  */ .crm-service__head p {
/* 6356  */     margin: 0;
/* 6357  */ }
/* 6358  */ .crm-service__inner {
/* 6359  */     display: flex;
/* 6360  */     align-items: stretch;
/* 6361  */     justify-content: space-between;
/* 6362  */     flex-wrap: wrap;
/* 6363  */ }
/* 6364  */ .crm-service__main--grid {
/* 6365  */     max-width: 100%;
/* 6366  */     width: 100%;
/* 6367  */     padding: 40px 20px 20px;
/* 6368  */     border: 2px solid #F37023;
/* 6369  */     text-align: center;
/* 6370  */     margin: 0 0 30px;
/* 6371  */ }
/* 6372  */ .crm-service__main--grid:last-child {
/* 6373  */     margin: 0;
/* 6374  */ }
/* 6375  */ .crm-service__main--grid-img {
/* 6376  */     max-width: 100px;
/* 6377  */     width: 100%;
/* 6378  */     height: 100px;
/* 6379  */     margin: 0 auto 40px;
/* 6380  */ }
/* 6381  */ .crm-service__main--grid-img img {
/* 6382  */     width: 100%;
/* 6383  */ }
/* 6384  */ .crm-service__main--grid h3 {
/* 6385  */     color: var(--black);
/* 6386  */ }
/* 6387  */ .crm-service__main--grid p {
/* 6388  */     font-size: 18px;
/* 6389  */     line-height: 26px;
/* 6390  */     margin: 0;
/* 6391  */ }
/* 6392  */
/* 6393  */ @media (min-width: 768px) {
/* 6394  */     .crm-service {
/* 6395  */         padding: 60px 0;
/* 6396  */     }
/* 6397  */     .crm-service__main--grid {
/* 6398  */         max-width: calc((100% / 2) - 20px);
/* 6399  */         padding: 60px 30px 30px;
/* 6400  */     }

/* app.css */

/* 6401  */     .crm-service__heading {
/* 6402  */         margin-bottom: 45px;
/* 6403  */     }
/* 6404  */ }
/* 6405  */ @media (min-width: 992px) {
/* 6406  */     .crm-service__main--grid {
/* 6407  */         margin: 0;
/* 6408  */         max-width: calc((100% / 3) - 50px);
/* 6409  */         padding: 80px 40px 40px;
/* 6410  */     }
/* 6411  */     .crm-service {
/* 6412  */         padding: 80px 0;
/* 6413  */     }
/* 6414  */     .crm-service__heading {
/* 6415  */         margin-bottom: 60px;
/* 6416  */     }
/* 6417  */ }
/* 6418  */ @media (min-width: 1200px) {
/* 6419  */     .crm-service {
/* 6420  */         padding: 100px 0;
/* 6421  */     }
/* 6422  */     .crm-service__heading {
/* 6423  */         margin-bottom: 75px;
/* 6424  */     }
/* 6425  */ }
/* 6426  */ @media (min-width: 1441px) {
/* 6427  */     .crm-service {
/* 6428  */         padding: 120px 0;
/* 6429  */     }
/* 6430  */     .crm-service__heading {
/* 6431  */         margin-bottom: 90px;
/* 6432  */     }
/* 6433  */ }
/* 6434  */ .make-sure {
/* 6435  */     padding: 40px 0;
/* 6436  */     background: var(--black);
/* 6437  */ }
/* 6438  */
/* 6439  */ .make-sure img {
/* 6440  */     margin-bottom: 30px;
/* 6441  */ }
/* 6442  */
/* 6443  */ .make-sure h2,
/* 6444  */ .make-sure p {
/* 6445  */     color: var(--white);
/* 6446  */ }
/* 6447  */
/* 6448  */ .make-sure p {
/* 6449  */     margin: 0;
/* 6450  */ }

/* app.css */

/* 6451  */
/* 6452  */ .make-sure__list {
/* 6453  */     margin-top: 40px;
/* 6454  */     display: flex;
/* 6455  */     align-items: center;
/* 6456  */     flex-wrap: wrap;
/* 6457  */     justify-content: space-between;
/* 6458  */ }
/* 6459  */
/* 6460  */ .make-sure__list li {
/* 6461  */     position: relative;
/* 6462  */     width: 100%;
/* 6463  */     color: var(--white);
/* 6464  */     padding-left: 36px;
/* 6465  */     margin-bottom: 20px;
/* 6466  */     font-weight: 500;
/* 6467  */ }
/* 6468  */
/* 6469  */ .make-sure__list li:before {
/* 6470  */     content: "";
/* 6471  */     position: absolute;
/* 6472  */     background: url("../components/make-sure/https:/brainstream-staging.s3.amazonaws.com/2024/07/rectangle-icon.svg");
/* 6473  */     width: 26px;
/* 6474  */     height: 26px;
/* 6475  */     left: 0;
/* 6476  */     top: 5px;
/* 6477  */ }
/* 6478  */
/* 6479  */ @media (min-width: 768px) {
/* 6480  */     .make-sure {
/* 6481  */         padding: 60px 0;
/* 6482  */     }
/* 6483  */     .make-sure img {
/* 6484  */         margin-left: auto;
/* 6485  */         margin-bottom: 0;
/* 6486  */     }
/* 6487  */ }
/* 6488  */
/* 6489  */ @media (min-width: 992px) {
/* 6490  */     .make-sure {
/* 6491  */         padding: 80px 0;
/* 6492  */     }
/* 6493  */     .make-sure__list li {
/* 6494  */         width: calc(50% - 21px);
/* 6495  */     }
/* 6496  */ }
/* 6497  */
/* 6498  */ @media (min-width: 1200px) {
/* 6499  */     .make-sure {
/* 6500  */         padding: 100px 0;

/* app.css */

/* 6501  */     }
/* 6502  */     .make-sure__list li {
/* 6503  */         font-size: 2rem;
/* 6504  */         line-height: 3rem;
/* 6505  */     }
/* 6506  */ }
/* 6507  */
/* 6508  */ @media (min-width: 1441px) {
/* 6509  */     .make-sure {
/* 6510  */         padding: 120px 0;
/* 6511  */     }
/* 6512  */     .make-sure__list li {
/* 6513  */         font-size: 2.4rem;
/* 6514  */         line-height: 3.4rem;
/* 6515  */     }
/* 6516  */ }
/* 6517  */
/* 6518  */ .crm-platform {
/* 6519  */     padding: 40px 0 80px;
/* 6520  */     overflow: visible;
/* 6521  */ }
/* 6522  */ .crm-platform__heading {
/* 6523  */     margin-bottom: 30px;
/* 6524  */ }
/* 6525  */ .crm-platform__heading h2 {
/* 6526  */     margin: 0;
/* 6527  */ }
/* 6528  */ .crm-platform__main--inner {
/* 6529  */     background: #F370230D;
/* 6530  */     padding: 20px;
/* 6531  */     height: 100%;
/* 6532  */ }
/* 6533  */ .crm-platform__main--inner img {
/* 6534  */     margin: 0 0 30px;
/* 6535  */ }
/* 6536  */ .crm-platform__main--inner h3 {
/* 6537  */     color: var(--black);
/* 6538  */     margin: 0 0 12px;
/* 6539  */ }
/* 6540  */ .crm-platform__main--inner p {
/* 6541  */     margin: 0;
/* 6542  */     font-size: 18px;
/* 6543  */     line-height: 26px;
/* 6544  */ }
/* 6545  */ .crm-platform__main--grid {
/* 6546  */     display: flex;
/* 6547  */     align-items: stretch;
/* 6548  */     margin: 0 0 30px;
/* 6549  */ }
/* 6550  */

/* app.css */

/* 6551  */ @media (min-width: 768px){
/* 6552  */     .crm-platform__heading {
/* 6553  */         margin-bottom: 45px;
/* 6554  */     }
/* 6555  */     .crm-platform__main--inner {
/* 6556  */         padding: 30px;
/* 6557  */     }
/* 6558  */     .crm-platform {
/* 6559  */         padding: 60px 0 120px;
/* 6560  */     }
/* 6561  */ }
/* 6562  */ @media (min-width: 992px){
/* 6563  */     .crm-platform__heading {
/* 6564  */         margin-bottom: 60px;
/* 6565  */     }
/* 6566  */     .crm-platform__main--inner {
/* 6567  */         padding: 40px;
/* 6568  */     }
/* 6569  */     .crm-platform__main--grid {
/* 6570  */         margin: 0;
/* 6571  */     }
/* 6572  */     .crm-platform {
/* 6573  */         padding: 80px 0 160px;
/* 6574  */     }
/* 6575  */ }
/* 6576  */ @media (min-width: 1200px){
/* 6577  */     .crm-platform__heading {
/* 6578  */         margin-bottom: 75px;
/* 6579  */     }
/* 6580  */     .crm-platform {
/* 6581  */         padding: 100px 0 200px;
/* 6582  */     }
/* 6583  */ }
/* 6584  */ @media (min-width: 1441px){
/* 6585  */     .crm-platform__heading {
/* 6586  */         margin-bottom: 90px;
/* 6587  */     }
/* 6588  */     .crm-platform {
/* 6589  */         padding: 120px 0 240px;
/* 6590  */     }
/* 6591  */ }
/* 6592  */
/* 6593  */ .small-screen {
/* 6594  */     overflow: visible;
/* 6595  */     padding: 40px 0;
/* 6596  */     background: linear-gradient(245.24deg, #FF0000 0%, #F78D1E 100%);
/* 6597  */ }
/* 6598  */ .small-screen h2 {
/* 6599  */     color: var(--white);
/* 6600  */     margin: 0 0 16px;

/* app.css */

/* 6601  */ }
/* 6602  */ .small-screen p {
/* 6603  */     margin: 0;
/* 6604  */     color: var(--white);
/* 6605  */ }
/* 6606  */ .small-screen img {
/* 6607  */     position: relative;
/* 6608  */     top: 0;
/* 6609  */     right: 0;
/* 6610  */     margin: 0 0 30px;
/* 6611  */ }
/* 6612  */
/* 6613  */ @media (min-width: 768px) {
/* 6614  */     .small-screen img {
/* 6615  */         position: absolute;
/* 6616  */         top: -240px;
/* 6617  */         margin: 0;
/* 6618  */     }
/* 6619  */     .small-screen {
/* 6620  */         padding: 60px 0;
/* 6621  */     }
/* 6622  */ }
/* 6623  */ @media (min-width: 992px) {
/* 6624  */     .small-screen {
/* 6625  */         padding: 80px 0;
/* 6626  */     }
/* 6627  */ }
/* 6628  */ @media (min-width: 1200px) {
/* 6629  */     .small-screen {
/* 6630  */         padding: 100px 0;
/* 6631  */     }
/* 6632  */ }
/* 6633  */ @media (min-width: 1440px) {
/* 6634  */     .small-screen {
/* 6635  */         padding: 120px 0;
/* 6636  */     }
/* 6637  */ }
/* 6638  */ .development-service {
/* 6639  */     position: relative;
/* 6640  */     padding: 80px 0 40px;
/* 6641  */ }
/* 6642  */ .development-service__heading {
/* 6643  */     margin-bottom: 30px;
/* 6644  */ }
/* 6645  */ .development-service__heading h2 {
/* 6646  */     margin: 0;
/* 6647  */ }
/* 6648  */ .development-service__main--grid {
/* 6649  */     display: flex;
/* 6650  */     align-items: stretch;

/* app.css */

/* 6651  */     margin: 0 0 30px;
/* 6652  */ }
/* 6653  */ .development-service__main--grid:last-child {
/* 6654  */     margin: 0;
/* 6655  */ }
/* 6656  */ .development-service__inner {
/* 6657  */     position: relative;
/* 6658  */     background: rgba(243, 112, 35, 0.05);
/* 6659  */     padding: 40px;
/* 6660  */     height: 100%;
/* 6661  */ }
/* 6662  */ .development-service__inner img {
/* 6663  */     margin: 0 0 30px;
/* 6664  */ }
/* 6665  */ .development-service__inner h3 {
/* 6666  */     color: var(--black);
/* 6667  */     font-weight: 700;
/* 6668  */     margin: 0 0 12px;
/* 6669  */ }
/* 6670  */ .development-service__inner p {
/* 6671  */     margin: 0;
/* 6672  */     font-size: 18px;
/* 6673  */     line-height: 26px;
/* 6674  */ }
/* 6675  */ .development-service__inner:before {
/* 6676  */     content: "";
/* 6677  */     position: absolute;
/* 6678  */     top: 0;
/* 6679  */     right: 0;
/* 6680  */     width: 0;
/* 6681  */     height: 0;
/* 6682  */     border-style: solid;
/* 6683  */     border-width: 0 66px 66px 0;
/* 6684  */     border-color: transparent #F37023 transparent transparent;
/* 6685  */     transition: all 500ms linear;
/* 6686  */ }
/* 6687  */
/* 6688  */ @media (min-width: 768px) {
/* 6689  */     .development-service__heading {
/* 6690  */         margin-bottom: 45px;
/* 6691  */     }
/* 6692  */     .development-service {
/* 6693  */         padding: 120px 0 60px;
/* 6694  */     }
/* 6695  */ }
/* 6696  */ @media (min-width: 992px) {
/* 6697  */     .development-service__main--grid {
/* 6698  */         margin: 0;
/* 6699  */     }
/* 6700  */     .development-service__heading {

/* app.css */

/* 6701  */         margin-bottom: 60px;
/* 6702  */     }
/* 6703  */     .development-service {
/* 6704  */         padding: 160px 0 80px;
/* 6705  */     }
/* 6706  */ }
/* 6707  */ @media (min-width: 1200px) {
/* 6708  */     .development-service__heading {
/* 6709  */         margin-bottom: 75px;
/* 6710  */     }
/* 6711  */     .development-service {
/* 6712  */         padding: 200px 0 100px;
/* 6713  */     }
/* 6714  */ }
/* 6715  */ @media (min-width: 1441px) {
/* 6716  */     .development-service__heading {
/* 6717  */         margin-bottom: 90px;
/* 6718  */     }
/* 6719  */     .development-service {
/* 6720  */         padding: 240px 0 120px;
/* 6721  */     }
/* 6722  */ }
/* 6723  */
/* 6724  */ .business-cloud {
/* 6725  */     padding: 40px 0;
/* 6726  */     position: relative;
/* 6727  */ }
/* 6728  */ .business-cloud p {
/* 6729  */     margin: 0;
/* 6730  */ }
/* 6731  */ .business-cloud__list {
/* 6732  */     margin: 20px 0 30px;
/* 6733  */     display: flex;
/* 6734  */     align-items: center;
/* 6735  */     flex-wrap: wrap;
/* 6736  */     justify-content: space-between;
/* 6737  */ }
/* 6738  */ .business-cloud__list li {
/* 6739  */     max-width: 100%;
/* 6740  */     width: 100%;
/* 6741  */     margin: 0 0 20px;
/* 6742  */     color: var(--black);
/* 6743  */     font-weight: 500;
/* 6744  */     position: relative;
/* 6745  */     padding-left: 36px;
/* 6746  */ }
/* 6747  */ .business-cloud__list li:before {
/* 6748  */     content: "";
/* 6749  */     position: absolute;
/* 6750  */     background: url("/wp-content/themes/brainstream/images/rectangle-icon.svg");

/* app.css */

/* 6751  */     width: 26px;
/* 6752  */     height: 26px;
/* 6753  */     left: 0;
/* 6754  */     top: 5px;
/* 6755  */ }
/* 6756  */ .business-cloud__btn {
/* 6757  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 6758  */ }
/* 6759  */ .business-cloud__btn:before {
/* 6760  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 6761  */ }
/* 6762  */
/* 6763  */ @media (min-width: 768px) {
/* 6764  */     .business-cloud {
/* 6765  */         padding: 60px 0;
/* 6766  */     }
/* 6767  */     .business-cloud__list {
/* 6768  */         margin: 30px 0 45px;
/* 6769  */     }
/* 6770  */ }
/* 6771  */ @media (min-width: 992px) {
/* 6772  */     .business-cloud__list li {
/* 6773  */         max-width: calc((100% / 2) - 19px);
/* 6774  */     }
/* 6775  */     .business-cloud {
/* 6776  */         padding: 80px 0;
/* 6777  */     }
/* 6778  */     .business-cloud__list {
/* 6779  */         margin: 42px 0 60px;
/* 6780  */     }
/* 6781  */ }
/* 6782  */ @media (min-width: 1200px) {
/* 6783  */     .business-cloud {
/* 6784  */         padding: 100px 0;
/* 6785  */     }
/* 6786  */     .business-cloud__list li {
/* 6787  */         font-size: 2rem;
/* 6788  */         line-height: 3rem;
/* 6789  */     }
/* 6790  */     .business-cloud__list {
/* 6791  */         margin: 42px 0 75px;
/* 6792  */     }
/* 6793  */ }
/* 6794  */ @media (min-width: 1441px) {
/* 6795  */     .business-cloud {
/* 6796  */         padding: 120px 0;
/* 6797  */     }
/* 6798  */     .business-cloud__list li {
/* 6799  */         font-size: 2.4rem;
/* 6800  */         line-height: 3.4rem;

/* app.css */

/* 6801  */     }
/* 6802  */     .business-cloud__list {
/* 6803  */         margin: 42px 0 90px;
/* 6804  */     }
/* 6805  */ }
/* 6806  */ .cloud-service {
/* 6807  */     padding: 40px 0;
/* 6808  */     background: rgba(243, 112, 35, 0.05);
/* 6809  */ }
/* 6810  */ .cloud-service__heading {
/* 6811  */     margin-bottom: 30px;
/* 6812  */ }
/* 6813  */ .cloud-service__heading h2 {
/* 6814  */     margin: 0;
/* 6815  */ }
/* 6816  */ .cloud-service__main--grid {
/* 6817  */     margin: 0 0 30px;
/* 6818  */ }
/* 6819  */ .cloud-service__main--inner {
/* 6820  */     display: flex;
/* 6821  */     padding: 15px;
/* 6822  */     background: var(--white);
/* 6823  */     align-items: center;
/* 6824  */     position: relative;
/* 6825  */ }
/* 6826  */ .cloud-service__main--inner h3 {
/* 6827  */     margin: 0 0 0 15px;
/* 6828  */     color: var(--black);
/* 6829  */ }
/* 6830  */ .cloud-service__main--inner:before {
/* 6831  */     content: "";
/* 6832  */     position: absolute;
/* 6833  */     top: 0;
/* 6834  */     right: 0;
/* 6835  */     width: 0;
/* 6836  */     height: 0;
/* 6837  */     border-style: solid;
/* 6838  */     border-width: 0 33px 33px 0;
/* 6839  */     border-color: transparent #F37023 transparent transparent;
/* 6840  */     transition: all 500ms linear;
/* 6841  */ }
/* 6842  */
/* 6843  */ @media (min-width: 768px) {
/* 6844  */     .cloud-service {
/* 6845  */         padding: 60px 0;
/* 6846  */     }
/* 6847  */     .cloud-service__main--inner {
/* 6848  */         padding: 30px;
/* 6849  */     }
/* 6850  */     .cloud-service__main--inner:before {

/* app.css */

/* 6851  */         border-width: 0 66px 66px 0;
/* 6852  */     }
/* 6853  */     .cloud-service__main--inner h3 {
/* 6854  */         margin: 0 0 0 30px;
/* 6855  */     }
/* 6856  */     .cloud-service__heading {
/* 6857  */         margin-bottom: 45px;
/* 6858  */     }
/* 6859  */ }
/* 6860  */ @media (min-width: 992px) {
/* 6861  */     .cloud-service {
/* 6862  */         padding: 80px 0;
/* 6863  */     }
/* 6864  */     .cloud-service__main--grid {
/* 6865  */         margin: 0;
/* 6866  */     }
/* 6867  */     .cloud-service__heading {
/* 6868  */         margin-bottom: 60px;
/* 6869  */     }
/* 6870  */ }
/* 6871  */ @media (min-width: 1200px) {
/* 6872  */     .cloud-service {
/* 6873  */         padding: 100px 0;
/* 6874  */     }
/* 6875  */     .cloud-service__heading {
/* 6876  */         margin-bottom: 75px;
/* 6877  */     }
/* 6878  */ }
/* 6879  */ @media (min-width: 1441px) {
/* 6880  */     .cloud-service {
/* 6881  */         padding: 120px 0;
/* 6882  */     }
/* 6883  */     .cloud-service__heading {
/* 6884  */         margin-bottom: 90px;
/* 6885  */     }
/* 6886  */ }
/* 6887  */ .world-enterprise {
/* 6888  */     position: relative;
/* 6889  */ }
/* 6890  */ .world-enterprise__bg {
/* 6891  */     position: absolute;
/* 6892  */     width: 100%;
/* 6893  */     height: 100%;
/* 6894  */     top: 0;
/* 6895  */     left: 0;
/* 6896  */     object-fit: cover;
/* 6897  */ }
/* 6898  */ .world-enterprise__container {
/* 6899  */     padding: 30px 15px;
/* 6900  */ }

/* app.css */

/* 6901  */ .world-enterprise h2 {
/* 6902  */     color: var(--white);
/* 6903  */ }
/* 6904  */ .world-enterprise p {
/* 6905  */     color: var(--white);
/* 6906  */     margin: 0;
/* 6907  */ }
/* 6908  */
/* 6909  */ @media (min-width: 768px) {
/* 6910  */     .world-enterprise__container {
/* 6911  */         padding: 60px 15px;
/* 6912  */     }
/* 6913  */ }
/* 6914  */ @media (min-width: 992px) {
/* 6915  */     .world-enterprise__container {
/* 6916  */         padding: 90px 15px;
/* 6917  */     }
/* 6918  */ }
/* 6919  */ @media (min-width: 1200px) {
/* 6920  */     .world-enterprise__container {
/* 6921  */         padding: 120px 15px;
/* 6922  */     }
/* 6923  */ }
/* 6924  */ @media (min-width: 1440px) {
/* 6925  */     .world-enterprise__container {
/* 6926  */         padding: 150px 15px;
/* 6927  */     }
/* 6928  */ }
/* 6929  */ .online-presence {
/* 6930  */     padding: 40px 0;
/* 6931  */     position: relative;
/* 6932  */     background: var(--black);
/* 6933  */ }
/* 6934  */ .online-presence__heading-head {
/* 6935  */     max-width: 1111px;
/* 6936  */     width: 100%;
/* 6937  */     margin: 0 auto;
/* 6938  */     text-align: center;
/* 6939  */ }
/* 6940  */ .online-presence__heading-head h2 {
/* 6941  */     color: var(--white);
/* 6942  */ }
/* 6943  */ .online-presence__heading-head p {
/* 6944  */     color: var(--white);
/* 6945  */     margin: 0;
/* 6946  */ }
/* 6947  */ .online-presence__main--grid {
/* 6948  */     border-bottom: 2px solid rgba(243, 112, 35, 0.1);
/* 6949  */     /* padding-left: 58px; */
/* 6950  */     display: flex;

/* app.css */

/* 6951  */     align-items: stretch;
/* 6952  */     padding: 40px 15px;
/* 6953  */ }
/* 6954  */ .online-presence__main--grid:first-child {
/* 6955  */     padding-left: 15px;
/* 6956  */ }
/* 6957  */ .online-presence__main--inner img {
/* 6958  */     margin: 0 0 30px;
/* 6959  */ }
/* 6960  */ .online-presence__main--inner p {
/* 6961  */     color: var(--white);
/* 6962  */     margin: 0;
/* 6963  */ }
/* 6964  */ .online-presence__main--inner {
/* 6965  */     max-width: 422px;
/* 6966  */     width: 100%;
/* 6967  */     margin: 0 auto;
/* 6968  */ }
/* 6969  */ .online-presence__main,
/* 6970  */ .online-presence__button,
/* 6971  */ .online-presence__heading {
/* 6972  */     margin-bottom: 30px;
/* 6973  */ }
/* 6974  */ .online-presence__image--img {
/* 6975  */     max-width: 1150px;
/* 6976  */     width: 100%;
/* 6977  */     margin: 0 auto;
/* 6978  */ }
/* 6979  */
/* 6980  */
/* 6981  */ @media (min-width: 768px) {
/* 6982  */     .online-presence__main,
/* 6983  */     .online-presence__button,
/* 6984  */     .online-presence__heading {
/* 6985  */         margin-bottom: 45px;
/* 6986  */     }
/* 6987  */     .online-presence {
/* 6988  */         padding: 60px 0;
/* 6989  */     }
/* 6990  */     .online-presence__main--grid {
/* 6991  */         border-right: 2px solid rgba(243, 112, 35, 0.1);
/* 6992  */         border-bottom: 0;
/* 6993  */     }
/* 6994  */     .online-presence__main--grid:last-child,
/* 6995  */     .online-presence__main--grid:nth-child(2) {
/* 6996  */         border-right: 0;
/* 6997  */     }
/* 6998  */ }
/* 6999  */ @media (min-width: 992px) {
/* 7000  */     .online-presence__main,

/* app.css */

/* 7001  */     .online-presence__button,
/* 7002  */     .online-presence__heading {
/* 7003  */         margin-bottom: 60px;
/* 7004  */     }
/* 7005  */     .online-presence {
/* 7006  */         padding: 80px 0;
/* 7007  */     }
/* 7008  */     .online-presence__main--grid {
/* 7009  */         padding: 40px 15px 15px;
/* 7010  */     }
/* 7011  */     .online-presence__main--grid:nth-child(2) {
/* 7012  */         border-right: 2px solid rgba(243, 112, 35, 0.1);
/* 7013  */     }
/* 7014  */ }
/* 7015  */ @media (min-width: 1200px) {
/* 7016  */     .online-presence__main,
/* 7017  */     .online-presence__button,
/* 7018  */     .online-presence__heading {
/* 7019  */         margin-bottom: 75px;
/* 7020  */     }
/* 7021  */     .online-presence {
/* 7022  */         padding: 100px 0;
/* 7023  */     }
/* 7024  */ }
/* 7025  */ @media (min-width: 1440px) {
/* 7026  */     .online-presence__main,
/* 7027  */     .online-presence__button,
/* 7028  */     .online-presence__heading {
/* 7029  */         margin-bottom: 90px;
/* 7030  */     }
/* 7031  */     .online-presence {
/* 7032  */         padding: 120px 0;
/* 7033  */     }
/* 7034  */ }
/* 7035  */ .user-experience {
/* 7036  */     padding: 40px 0;
/* 7037  */ }
/* 7038  */ .user-experience__heading {
/* 7039  */     max-width: 1127px;
/* 7040  */     width: 100%;
/* 7041  */     margin: 0 auto 90px;
/* 7042  */ }
/* 7043  */ .user-experience__heading h2 {
/* 7044  */     margin: 0;
/* 7045  */ }
/* 7046  */ .user-experience__main--img {
/* 7047  */     position: relative;
/* 7048  */     right: 0;
/* 7049  */     height: 100%;
/* 7050  */     margin: 0 0 30px;

/* app.css */

/* 7051  */ }
/* 7052  */
/* 7053  */ .user-experience__main--grid-cont {
/* 7054  */     display: flex;
/* 7055  */     flex-direction: column;
/* 7056  */     justify-content: center;
/* 7057  */ }
/* 7058  */ .user-experience__main--grid-cont h3 {
/* 7059  */     color: var(--black);
/* 7060  */     font-weight: 700;
/* 7061  */ }
/* 7062  */ .user-experience__main--grid-cont p {
/* 7063  */     margin: 0 0 42px;
/* 7064  */ }
/* 7065  */ .user-experience__main--list {
/* 7066  */     margin: 0 0 30px;
/* 7067  */ }
/* 7068  */ .user-experience__main--btn {
/* 7069  */     display: flex;
/* 7070  */     width: fit-content;
/* 7071  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 7072  */ }
/* 7073  */ .user-experience__main--btn:hover {
/* 7074  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 7075  */ }
/* 7076  */ .user-experience__main--list li {
/* 7077  */     position: relative;
/* 7078  */     margin: 0 0 20px;
/* 7079  */     font-weight: 500;
/* 7080  */     color: var(--black);
/* 7081  */     padding-left: 42px;
/* 7082  */ }
/* 7083  */ .user-experience__main--list li:last-child {
/* 7084  */     margin: 0;
/* 7085  */ }
/* 7086  */ .user-experience__main--list li:before {
/* 7087  */     content: "";
/* 7088  */     position: absolute;
/* 7089  */     width: 26px;
/* 7090  */     height: 26px;
/* 7091  */     left: 0;
/* 7092  */     top: 5px;
/* 7093  */     background: url("/wp-content/themes/brainstream/images/rectangle-icon.svg");
/* 7094  */ }
/* 7095  */
/* 7096  */ @media (min-width: 768px) {
/* 7097  */     .user-experience {
/* 7098  */         padding: 60px 0;
/* 7099  */     }
/* 7100  */     .user-experience__main--list {

/* app.css */

/* 7101  */         margin: 0 0 45px;
/* 7102  */     }
/* 7103  */
/* 7104  */ }
/* 7105  */ @media (min-width: 992px) {
/* 7106  */     .user-experience {
/* 7107  */         padding: 80px 0;
/* 7108  */     }
/* 7109  */     .user-experience__main--img  {
/* 7110  */         position: absolute;
/* 7111  */         width: 49vw;
/* 7112  */         padding-right: 15px;
/* 7113  */         right: 11px;
/* 7114  */         margin: 0;
/* 7115  */     }
/* 7116  */     .user-experience__main--img img{
/* 7117  */         height: 100%;
/* 7118  */         width: 100%;
/* 7119  */         display: block;
/* 7120  */         object-fit: cover;
/* 7121  */         object-position: top right;
/* 7122  */     }
/* 7123  */     .user-experience__main--list {
/* 7124  */         margin: 0;
/* 7125  */     }
/* 7126  */     .user-experience__main--grid-cont{
/* 7127  */         padding: 60px 0;
/* 7128  */     }.user-experience__main--list {
/* 7129  */         margin: 0 0 55px;
/* 7130  */     }
/* 7131  */ }
/* 7132  */ @media (min-width: 1200px) {
/* 7133  */     .user-experience__main--list li {
/* 7134  */         font-size: 20px;
/* 7135  */         line-height: 30px;
/* 7136  */     }
/* 7137  */     .user-experience {
/* 7138  */         padding: 100px 0;
/* 7139  */     }
/* 7140  */     .user-experience__main--list {
/* 7141  */         margin: 0 0 60px;
/* 7142  */     }
/* 7143  */     .user-experience__main--list {
/* 7144  */         margin: 0 0 70px;
/* 7145  */     }
/* 7146  */ }
/* 7147  */ @media (min-width: 1440px) {
/* 7148  */     .user-experience {
/* 7149  */         padding: 120px 0;
/* 7150  */     }

/* app.css */

/* 7151  */     .user-experience__main--list li {
/* 7152  */         font-size: 24px;
/* 7153  */         line-height: 34px;
/* 7154  */     }
/* 7155  */     .user-experience__main--img {
/* 7156  */         width: calc(50vw - 90px);
/* 7157  */         padding-right: 0px;
/* 7158  */         right: 90px;
/* 7159  */     }
/* 7160  */     .user-experience__main--list {
/* 7161  */         margin: 0 0 90px;
/* 7162  */     }
/* 7163  */ }
/* 7164  */ .stay-agile {
/* 7165  */     position: relative;
/* 7166  */     padding: 40px 0;
/* 7167  */ }
/* 7168  */ .stay-agile__heading {
/* 7169  */     margin-bottom: 30px;
/* 7170  */ }
/* 7171  */ .stay-agile__heading--head {
/* 7172  */     max-width: 1236px;
/* 7173  */     width: 100%;
/* 7174  */     margin: 0 auto;
/* 7175  */ }
/* 7176  */ .stay-agile__main--inner {
/* 7177  */     border: 1px solid rgba(0, 0, 0, 1);
/* 7178  */     position: relative;
/* 7179  */     padding: 20px;
/* 7180  */     display: block;
/* 7181  */ }
/* 7182  */ .stay-agile__main--inner-img {
/* 7183  */     max-width: 112px;
/* 7184  */     width: 100%;
/* 7185  */     height: 112px;
/* 7186  */     display: block;
/* 7187  */     margin-bottom: 20px;
/* 7188  */     background: rgba(243, 112, 35, 0.05);
/* 7189  */     position: relative;
/* 7190  */ }
/* 7191  */ .stay-agile__main--inner-img img {
/* 7192  */     width: 60px;
/* 7193  */     height: 60px;
/* 7194  */     position: absolute;
/* 7195  */     left: 50%;
/* 7196  */     top: 50%;
/* 7197  */     transform: translate(-50% , -50%);
/* 7198  */     filter: brightness(0);
/* 7199  */ }
/* 7200  */ .stay-agile__main--inner-cont h4 {

/* app.css */

/* 7201  */     color: var(--orange);
/* 7202  */ }
/* 7203  */ .stay-agile__main--inner-cont p {
/* 7204  */     margin: 0;
/* 7205  */     font-size: 14px;
/* 7206  */     line-height: 22px;
/* 7207  */ }
/* 7208  */ .stay-agile__main--inner:before {
/* 7209  */     content: "";
/* 7210  */     position: absolute;
/* 7211  */     top: 0;
/* 7212  */     right: 0;
/* 7213  */     width: 0;
/* 7214  */     height: 0;
/* 7215  */     border-style: solid;
/* 7216  */     border-width: 0 44px 44px 0;
/* 7217  */     border-color: transparent #000 transparent transparent;
/* 7218  */     transition: all 500ms linear;
/* 7219  */ }
/* 7220  */ .stay-agile__main--grid {
/* 7221  */     margin: 0 0 30px;
/* 7222  */     display: flex;
/* 7223  */     align-items: stretch;
/* 7224  */ }
/* 7225  */ .stay-agile__main--grid:last-child {
/* 7226  */     margin: 0;
/* 7227  */ }
/* 7228  */
/* 7229  */ @media (min-width: 576px) {
/* 7230  */     .stay-agile__main--grid:last-child,
/* 7231  */     .stay-agile__main--grid:nth-last-child(2) {
/* 7232  */         margin: 0;
/* 7233  */     }
/* 7234  */ }
/* 7235  */
/* 7236  */ @media (min-width: 768px) {
/* 7237  */     .stay-agile {
/* 7238  */         padding: 60px 0;
/* 7239  */     }
/* 7240  */     .stay-agile__heading {
/* 7241  */         margin-bottom: 45px;
/* 7242  */     }
/* 7243  */
/* 7244  */     .stay-agile__main--inner-cont p {
/* 7245  */         font-size: 16px;
/* 7246  */         line-height: 24px;
/* 7247  */     }
/* 7248  */ }
/* 7249  */ @media (min-width: 992px) {
/* 7250  */     .stay-agile {

/* app.css */

/* 7251  */         padding: 80px 0;
/* 7252  */     }
/* 7253  */     .stay-agile__heading {
/* 7254  */         margin-bottom: 60px;
/* 7255  */     }
/* 7256  */     .stay-agile__main--inner-cont p {
/* 7257  */         font-size: 18px;
/* 7258  */         line-height: 26px;
/* 7259  */     }
/* 7260  */     .stay-agile__main--inner {
/* 7261  */         display: flex;
/* 7262  */         align-items: center;
/* 7263  */         padding: 30px;
/* 7264  */     }
/* 7265  */     .stay-agile__main--grid:last-child,
/* 7266  */     .stay-agile__main--grid:nth-last-child(2) {
/* 7267  */         margin: 0;
/* 7268  */     }
/* 7269  */     .stay-agile__main--inner-img {
/* 7270  */         margin-right: 26px;
/* 7271  */         margin-bottom: 0;
/* 7272  */     }
/* 7273  */ }
/* 7274  */ @media (min-width: 1200px) {
/* 7275  */     .stay-agile {
/* 7276  */         padding: 100px 0;
/* 7277  */     }
/* 7278  */     .stay-agile__heading {
/* 7279  */         margin-bottom: 75px;
/* 7280  */     }
/* 7281  */ }
/* 7282  */ @media (min-width: 1440px) {
/* 7283  */     .stay-agile {
/* 7284  */         padding: 120px 0;
/* 7285  */     }
/* 7286  */     .stay-agile__heading {
/* 7287  */         margin-bottom: 90px;
/* 7288  */     }
/* 7289  */ }
/* 7290  */ .technical-prowess {
/* 7291  */     position: relative;
/* 7292  */ }
/* 7293  */ .technical-prowess__bg {
/* 7294  */     position: absolute;
/* 7295  */     width: 100%;
/* 7296  */     height: 100%;
/* 7297  */     left: 0;
/* 7298  */     top: 0;
/* 7299  */     object-fit: cover;
/* 7300  */ }

/* app.css */

/* 7301  */ .technical-prowess__container {
/* 7302  */     padding: 40px 15px;
/* 7303  */ }
/* 7304  */ .technical-prowess__img {
/* 7305  */     margin-left: auto;
/* 7306  */     margin-bottom: 30px;
/* 7307  */ }
/* 7308  */ .technical-prowess h2 {
/* 7309  */     color: var(--white);
/* 7310  */     margin: 0 0 15px;
/* 7311  */ }
/* 7312  */ .technical-prowess p {
/* 7313  */     color: var(--white);
/* 7314  */     margin: 0;
/* 7315  */ }
/* 7316  */
/* 7317  */ @media (min-width: 768px) {
/* 7318  */     .technical-prowess__container {
/* 7319  */         padding: 60px 15px;
/* 7320  */     }
/* 7321  */     .technical-prowess h2 {
/* 7322  */         margin: 0 0 30px;
/* 7323  */     }
/* 7324  */     .technical-prowess p {
/* 7325  */         margin: 0;
/* 7326  */     }
/* 7327  */     .technical-prowess__img {
/* 7328  */         margin-bottom: 0;
/* 7329  */     }
/* 7330  */ }
/* 7331  */ @media (min-width: 992px) {
/* 7332  */     .technical-prowess__container {
/* 7333  */         padding: 80px 15px;
/* 7334  */     }
/* 7335  */ }
/* 7336  */ @media (min-width: 1200px) {
/* 7337  */     .technical-prowess__container {
/* 7338  */         padding: 100px 15px;
/* 7339  */     }
/* 7340  */ }
/* 7341  */ @media (min-width: 1440px) {
/* 7342  */     .technical-prowess__container {
/* 7343  */         padding: 120px 15px;
/* 7344  */     }
/* 7345  */ }
/* 7346  */ .simplify-service {
/* 7347  */     padding: 40px 0;
/* 7348  */     background: var(--black);
/* 7349  */ }
/* 7350  */ .simplify-service__main--img {

/* app.css */

/* 7351  */     position: relative;
/* 7352  */     width: 100%;
/* 7353  */     left: 0;
/* 7354  */     margin-top: 30px;
/* 7355  */ }
/* 7356  */ .simplify-service__main--cont p {
/* 7357  */     font-size: 14px;
/* 7358  */     line-height: 24px;
/* 7359  */     color: var(--white);
/* 7360  */     margin: 0 0 20px;
/* 7361  */ }
/* 7362  */ .simplify-service__main--cont ul {
/* 7363  */     margin: 0 0 20px;
/* 7364  */ }
/* 7365  */ .simplify-service__main--cont ul li {
/* 7366  */     font-size: 14px;
/* 7367  */     line-height: 24px;
/* 7368  */     color: var(--white);
/* 7369  */     margin: 0 0 16px;
/* 7370  */     padding-left: 34px;
/* 7371  */     position: relative;
/* 7372  */ }
/* 7373  */ .simplify-service__main--cont ul li::before {
/* 7374  */     content: "";
/* 7375  */     background: url("/wp-content/themes/brainstream/images/rectangle-icon.svg");
/* 7376  */     width: 22px;
/* 7377  */     height: 22px;
/* 7378  */     left: 0;
/* 7379  */     top: 5px;
/* 7380  */     position: absolute;
/* 7381  */ }
/* 7382  */ .simplify-service__main--cont ul li:last-child {
/* 7383  */     margin: 0;
/* 7384  */ }
/* 7385  */ .simplify-service__main--bg {
/* 7386  */     position: absolute;
/* 7387  */     width: 100vw;
/* 7388  */     right: 0;
/* 7389  */     height: 100%;
/* 7390  */     background: rgba(255, 255, 255, 0.05);
/* 7391  */ }
/* 7392  */ .simplify-service__main {
/* 7393  */     padding: 30px 0;
/* 7394  */ }
/* 7395  */ .simplify-service__main--img img {
/* 7396  */     width: 100%;
/* 7397  */     height: 100%;
/* 7398  */     object-fit: cover;
/* 7399  */ }
/* 7400  */ .simplify-service__row {

/* app.css */

/* 7401  */     margin-top: 30px;
/* 7402  */ }
/* 7403  */ .simplify-service__row:first-child {
/* 7404  */     margin-top: 0;
/* 7405  */ }
/* 7406  */ .simplify-service__row:nth-child(even)  .simplify-service__main {
/* 7407  */     flex-direction: row-reverse;
/* 7408  */ }
/* 7409  */ .simplify-service__row:nth-child(even) .simplify-service__main .simplify-service__main--img {
/* 7410  */     right: 0px;
/* 7411  */     left: auto;
/* 7412  */ }
/* 7413  */ .simplify-service__row:nth-child(even) .simplify-service__main--bg {
/* 7414  */     left: 0;
/* 7415  */ }
/* 7416  */ .simplify-service__main--inner-cont-btn {
/* 7417  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 7418  */ }
/* 7419  */ .simplify-service__main--inner-cont-btn:hover {
/* 7420  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 7421  */ }
/* 7422  */ .simplify-service__heading {
/* 7423  */     margin: 0 auto 90px;
/* 7424  */     text-align: center;
/* 7425  */     max-width: 1215px;
/* 7426  */     width: 100%;
/* 7427  */ }
/* 7428  */ .simplify-service__heading h2 {
/* 7429  */     color: var(--white);
/* 7430  */ }
/* 7431  */ .simplify-service__heading p {
/* 7432  */     color: var(--white);
/* 7433  */     margin: 0;
/* 7434  */ }
/* 7435  */ .simplify-service__main--cont-icon {
/* 7436  */     height: 50px;
/* 7437  */     width: 50px;
/* 7438  */     margin-bottom: 15px;
/* 7439  */ }
/* 7440  */
/* 7441  */ .simplify-service.with-back {
/* 7442  */     background: rgba(243, 112, 35, 0.05);
/* 7443  */ }
/* 7444  */ .simplify-service.with-back .simplify-service__main--bg {
/* 7445  */     background: rgba(243, 112, 35, 0.1);
/* 7446  */ }
/* 7447  */ .simplify-service.with-back .simplify-service__main--cont h3,
/* 7448  */ .simplify-service.with-back .simplify-service__main--cont p,
/* 7449  */ .simplify-service.with-back .simplify-service__main--cont ul li {
/* 7450  */     color: var(--black);

/* app.css */

/* 7451  */ }
/* 7452  */ .simplify-service.with-back .simplify-service__main--cont p + p {
/* 7453  */     margin: 0 0 10px;
/* 7454  */ }
/* 7455  */ .simplify-service__main--cont h3{
/* 7456  */     line-height: 4.6rem;
/* 7457  */  }
/* 7458  */
/* 7459  */ @media (min-width: 768px) {
/* 7460  */     .simplify-service {
/* 7461  */         padding: 60px 0;
/* 7462  */     }
/* 7463  */     .simplify-service__main--img {
/* 7464  */         position: absolute;
/* 7465  */         width: calc(50vw - 50px);
/* 7466  */         left: 50px;
/* 7467  */         height: 100%;
/* 7468  */         margin-top: 0;
/* 7469  */     }
/* 7470  */     .simplify-service__main {
/* 7471  */         padding: 45px 0;
/* 7472  */     }
/* 7473  */     .simplify-service__row {
/* 7474  */         margin-top: 45px;
/* 7475  */     }
/* 7476  */     .simplify-service__main--cont p {
/* 7477  */         font-size: 16px;
/* 7478  */         line-height: 26px;
/* 7479  */         margin: 0 0 30px;
/* 7480  */     }
/* 7481  */     .simplify-service__main--cont ul {
/* 7482  */         margin: 0 0 40px;
/* 7483  */     }
/* 7484  */     .simplify-service__main--cont ul li {
/* 7485  */         font-size: 16px;
/* 7486  */         line-height: 26px;
/* 7487  */     }
/* 7488  */     .simplify-service__row:nth-child(even) .simplify-service__main .simplify-service__main--img {
/* 7489  */         right: 50px;
/* 7490  */         left: auto;
/* 7491  */     }
/* 7492  */     .simplify-service__main--cont-icon {
/* 7493  */         height: 60px;
/* 7494  */         width: 60px;
/* 7495  */         margin-bottom: 20px;
/* 7496  */     }
/* 7497  */ }
/* 7498  */
/* 7499  */ @media (min-width: 992px) {
/* 7500  */     .simplify-service__main--bg {

/* app.css */

/* 7501  */         width: 97vw;
/* 7502  */     }
/* 7503  */     .simplify-service {
/* 7504  */         padding: 80px 0;
/* 7505  */     }
/* 7506  */     .simplify-service__main {
/* 7507  */         padding: 60px 0;
/* 7508  */     }
/* 7509  */     .simplify-service__row {
/* 7510  */         margin-top: 60px;
/* 7511  */     }
/* 7512  */     .simplify-service__main--cont p {
/* 7513  */         font-size: 18px;
/* 7514  */         line-height: 28px;
/* 7515  */         margin: 0 0 40px;
/* 7516  */     }
/* 7517  */     .simplify-service__main--cont ul {
/* 7518  */         margin: 0 0 60px;
/* 7519  */     }
/* 7520  */     .simplify-service__main--cont ul li {
/* 7521  */         font-size: 18px;
/* 7522  */         line-height: 28px;
/* 7523  */     }
/* 7524  */     .simplify-service__main--cont-icon {
/* 7525  */         height: 70px;
/* 7526  */         width: 70px;
/* 7527  */         margin-bottom: 25px;
/* 7528  */     }
/* 7529  */ }
/* 7530  */
/* 7531  */ @media (min-width: 1200px) {
/* 7532  */     .simplify-service {
/* 7533  */         padding: 100px 0;
/* 7534  */     }
/* 7535  */     .simplify-service__main {
/* 7536  */         padding: 75px 0;
/* 7537  */     }
/* 7538  */     .simplify-service__row {
/* 7539  */         margin-top: 75px;
/* 7540  */     }
/* 7541  */     .simplify-service__main--cont-icon {
/* 7542  */         height: 80px;
/* 7543  */         width: 80px;
/* 7544  */         margin-bottom: 30px;
/* 7545  */     }
/* 7546  */ }
/* 7547  */
/* 7548  */ @media (min-width: 1440px) {
/* 7549  */     .simplify-service {
/* 7550  */         padding: 120px 0;

/* app.css */

/* 7551  */     }
/* 7552  */     .simplify-service__main {
/* 7553  */         padding: 90px 0;
/* 7554  */     }
/* 7555  */     .simplify-service__row {
/* 7556  */         margin-top: 90px;
/* 7557  */     }
/* 7558  */     .simplify-service__main--cont-icon {
/* 7559  */         height: 90px;
/* 7560  */         width: 90px;
/* 7561  */     }
/* 7562  */ }
/* 7563  */ .futuristic {
/* 7564  */     position: relative;
/* 7565  */     background-repeat: no-repeat;
/* 7566  */     background-size: cover;
/* 7567  */     background-position: center;
/* 7568  */ }
/* 7569  */ .futuristic__container {
/* 7570  */     padding: 63px 15px;
/* 7571  */ }
/* 7572  */ .futuristic__heading {
/* 7573  */     max-width: 1170px;
/* 7574  */     width: 100%;
/* 7575  */     margin: 0 auto;
/* 7576  */     text-align: center;
/* 7577  */ }
/* 7578  */ .futuristic.set_max_width .futuristic__heading {
/* 7579  */     max-width: 300px;
/* 7580  */ }
/* 7581  */
/* 7582  */ .futuristic__heading p {
/* 7583  */     margin: 0;
/* 7584  */ }
/* 7585  */
/* 7586  */ .futuristic-top__img {
/* 7587  */     position: absolute;
/* 7588  */     width: 315px;
/* 7589  */     height: 315px;
/* 7590  */     top: 0;
/* 7591  */     right: 0;
/* 7592  */     display: none;
/* 7593  */ }
/* 7594  */ .futuristic-bottom__img {
/* 7595  */     position: absolute;
/* 7596  */     width: 315px;
/* 7597  */     height: 315px;
/* 7598  */     bottom: 0;
/* 7599  */     left: 0;
/* 7600  */     display: none;

/* app.css */

/* 7601  */ }
/* 7602  */ .futuristic__corner_images{
/* 7603  */     display: none;
/* 7604  */     position: absolute;
/* 7605  */     background-size: cover;
/* 7606  */     width: 125px;
/* 7607  */     height: 125px;
/* 7608  */     background-repeat: no-repeat;
/* 7609  */
/* 7610  */ }
/* 7611  */ .futuristic_top_image{
/* 7612  */     right: 0;
/* 7613  */     top: 0;
/* 7614  */ }
/* 7615  */ .futuristic_bottom_image{
/* 7616  */     bottom: 0;
/* 7617  */     left: 0;
/* 7618  */ }
/* 7619  */
/* 7620  */ .futuristic.with-back .futuristic__heading h2,
/* 7621  */ .futuristic.with-back .futuristic__heading p {
/* 7622  */     color: var(--white);
/* 7623  */ }
/* 7624  */ .futuristic__btn {
/* 7625  */     margin-top: 20px;
/* 7626  */ }
/* 7627  */ .futuristic__btn:before {
/* 7628  */     border-color: transparent #000 transparent transparent;
/* 7629  */ }
/* 7630  */ .futuristic__btn:hover {
/* 7631  */     background: var(--black);
/* 7632  */     color: var(--white);
/* 7633  */ }
/* 7634  */
/* 7635  */ @media (min-width: 768px) {
/* 7636  */     .futuristic-top__img,
/* 7637  */     .futuristic-bottom__img {
/* 7638  */         display: block;
/* 7639  */         width: 100px;
/* 7640  */         height: 100px;
/* 7641  */     }
/* 7642  */     .futuristic__container {
/* 7643  */         padding: 126px 15px;
/* 7644  */     }
/* 7645  */     .futuristic.set_max_width .futuristic__container {
/* 7646  */         padding: 55px 15px;
/* 7647  */     }
/* 7648  */     .futuristic__btn {
/* 7649  */         margin-top: 30px;
/* 7650  */     }

/* app.css */

/* 7651  */     .futuristic.set_max_width .futuristic__heading {
/* 7652  */         max-width: 370px;
/* 7653  */     }
/* 7654  */     .futuristic__corner_images{
/* 7655  */         display: block;
/* 7656  */
/* 7657  */     }
/* 7658  */ }
/* 7659  */ @media (min-width: 992px) {
/* 7660  */     .futuristic__container {
/* 7661  */         padding: 189px 15px;
/* 7662  */     }
/* 7663  */     .futuristic.set_max_width .futuristic__container {
/* 7664  */         padding: 125px 15px;
/* 7665  */     }
/* 7666  */     .futuristic-top__img,
/* 7667  */     .futuristic-bottom__img {
/* 7668  */         width: 180px;
/* 7669  */         height: 180px;
/* 7670  */     }
/* 7671  */     .futuristic__btn {
/* 7672  */         margin-top: 40px;
/* 7673  */     }
/* 7674  */     .futuristic.set_max_width .futuristic__heading {
/* 7675  */         max-width: 570px;
/* 7676  */     }
/* 7677  */     .futuristic__corner_images{
/* 7678  */         width: 180px;
/* 7679  */         height: 180px;
/* 7680  */     }
/* 7681  */ }
/* 7682  */ @media (min-width: 1200px) {
/* 7683  */     .futuristic__container {
/* 7684  */         padding: 252px 15px;
/* 7685  */     }
/* 7686  */     .futuristic.set_max_width .futuristic__container {
/* 7687  */         padding: 155px 15px;
/* 7688  */     }
/* 7689  */     .futuristic-top__img,
/* 7690  */     .futuristic-bottom__img {
/* 7691  */         display: block;
/* 7692  */         width: 250px;
/* 7693  */         height: 250px;
/* 7694  */     }
/* 7695  */     .futuristic__btn {
/* 7696  */         margin-top: 50px;
/* 7697  */     }
/* 7698  */     .futuristic.set_max_width .futuristic__heading {
/* 7699  */         max-width: 650px;
/* 7700  */     }

/* app.css */

/* 7701  */     .futuristic__corner_images {
/* 7702  */         width: 250px;
/* 7703  */         height: 250px;
/* 7704  */     }
/* 7705  */ }
/* 7706  */ @media (min-width: 1440px) {
/* 7707  */     .futuristic__container {
/* 7708  */         padding: 315px 15px;
/* 7709  */     }
/* 7710  */     .futuristic.set_max_width .futuristic__container {
/* 7711  */         padding: 210px 15px;
/* 7712  */     }
/* 7713  */     .futuristic-top__img,
/* 7714  */     .futuristic-bottom__img {
/* 7715  */         display: block;
/* 7716  */         width: 315px;
/* 7717  */         height: 315px;
/* 7718  */     }
/* 7719  */     .futuristic__btn {
/* 7720  */         margin-top: 60px;
/* 7721  */     }
/* 7722  */     .futuristic.set_max_width .futuristic__heading {
/* 7723  */         max-width: 750px;
/* 7724  */     }
/* 7725  */     .futuristic__corner_images {
/* 7726  */         width: 275px;
/* 7727  */         height: 275px;
/* 7728  */     }
/* 7729  */ }
/* 7730  */ @media (min-width: 1600px) {
/* 7731  */     .futuristic__corner_images {
/* 7732  */         width: 315px;
/* 7733  */         height: 315px;
/* 7734  */     }
/* 7735  */ }
/* 7736  */ .mobile-solution {
/* 7737  */     padding: 40px 0;
/* 7738  */     background: rgba(243, 112, 35, 0.05);
/* 7739  */ }
/* 7740  */ .mobile-solution__heading,
/* 7741  */ .mobile-solution__main {
/* 7742  */     margin-bottom: 30px;
/* 7743  */ }
/* 7744  */ .mobile-solution__heading h2 {
/* 7745  */     margin: 0;
/* 7746  */ }
/* 7747  */ .mobile-solution__main--grid {
/* 7748  */     margin: 25px 0;
/* 7749  */     display: flex;
/* 7750  */ }

/* app.css */

/* 7751  */ .mobile-solution__main--inner img {
/* 7752  */     margin: 0 0 25px;
/* 7753  */     width: 60px;
/* 7754  */     height: 60px;
/* 7755  */ }
/* 7756  */ .mobile-solution__main--inner h3 {
/* 7757  */     color: var(--black);
/* 7758  */     margin: 0 0 6px;
/* 7759  */ }
/* 7760  */ .mobile-solution__main--inner p {
/* 7761  */     margin: 0;
/* 7762  */     font-size: 14px;
/* 7763  */     line-height: 22px;
/* 7764  */ }
/* 7765  */ .mobile-solution__btn {
/* 7766  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 7767  */ }
/* 7768  */ .mobile-solution__btn:hover {
/* 7769  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 7770  */ }
/* 7771  */
/* 7772  */ @media (min-width: 768px) {
/* 7773  */     .mobile-solution {
/* 7774  */         padding: 60px 0;
/* 7775  */     }
/* 7776  */     .mobile-solution__main--inner p {
/* 7777  */         font-size: 16px;
/* 7778  */         line-height: 24px;
/* 7779  */     }
/* 7780  */     .mobile-solution__heading,
/* 7781  */     .mobile-solution__main {
/* 7782  */         margin-bottom: 45px;
/* 7783  */     }
/* 7784  */     .mobile-solution__main--grid {
/* 7785  */         margin: 35px 0;
/* 7786  */     }
/* 7787  */ }
/* 7788  */ @media (min-width: 992px) {
/* 7789  */     .mobile-solution {
/* 7790  */         padding: 80px 0;
/* 7791  */     }
/* 7792  */     .mobile-solution__main--inner p {
/* 7793  */         font-size: 18px;
/* 7794  */         line-height: 26px;
/* 7795  */     }
/* 7796  */     .mobile-solution__main--grid {
/* 7797  */         margin: 45px 0;
/* 7798  */     }
/* 7799  */     .mobile-solution__main--inner img {
/* 7800  */         width: 90px;

/* app.css */

/* 7801  */         height: 90px;
/* 7802  */     }
/* 7803  */ }
/* 7804  */ @media (min-width: 1200px) {
/* 7805  */     .mobile-solution {
/* 7806  */         padding: 100px 0;
/* 7807  */     }
/* 7808  */ }
/* 7809  */ @media (min-width: 1440px) {
/* 7810  */     .mobile-solution {
/* 7811  */         padding: 120px 0;
/* 7812  */     }
/* 7813  */ }
/* 7814  */ .iot-solution {
/* 7815  */     padding: 40px 0;
/* 7816  */     background: linear-gradient(245.24deg, #F37023 0%, #1C71D4  100%);
/* 7817  */ }
/* 7818  */ .iot-solution__heading {
/* 7819  */     margin-bottom: 30px;
/* 7820  */ }
/* 7821  */ .iot-solution__heading h2 {
/* 7822  */     color: var(--white);
/* 7823  */     margin: 0;
/* 7824  */ }
/* 7825  */ .iot-solution__main {
/* 7826  */     margin-bottom: 30px;
/* 7827  */ }
/* 7828  */ .iot-solution__main--grid {
/* 7829  */     margin-bottom: 30px;
/* 7830  */     display: flex;
/* 7831  */ }
/* 7832  */ .iot-solution__main--inner {
/* 7833  */     border: 2px solid rgba(255, 255, 255, 1);
/* 7834  */     padding: 20px;
/* 7835  */ }
/* 7836  */ .iot-solution__main--inner img {
/* 7837  */     margin: 0 0 30px;
/* 7838  */ }
/* 7839  */ .iot-solution__main--inner h3 {
/* 7840  */     margin: 0 0 12px;
/* 7841  */ }
/* 7842  */ .iot-solution__main--inner p {
/* 7843  */     color: var(--white);
/* 7844  */     margin: 0;
/* 7845  */     font-size: 18px;
/* 7846  */     line-height: 26px;
/* 7847  */ }
/* 7848  */ .iot-solution__btn:before {
/* 7849  */     border-color: transparent #000 transparent transparent;
/* 7850  */ }

/* app.css */

/* 7851  */ .iot-solution__btn {
/* 7852  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 7853  */ }
/* 7854  */ .iot-solution__btn:hover {
/* 7855  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 7856  */     color:var(--white);
/* 7857  */     background: var(--black);
/* 7858  */ }
/* 7859  */
/* 7860  */ @media (min-width: 768px) {
/* 7861  */     .iot-solution {
/* 7862  */         padding: 60px 0;
/* 7863  */     }
/* 7864  */     .iot-solution__heading,
/* 7865  */     .iot-solution__main {
/* 7866  */         margin-bottom: 45px;
/* 7867  */     }
/* 7868  */     .iot-solution__main--inner {
/* 7869  */         padding: 30px;
/* 7870  */     }
/* 7871  */ }
/* 7872  */ @media (min-width: 992px) {
/* 7873  */     .iot-solution {
/* 7874  */         padding: 80px 0;
/* 7875  */     }
/* 7876  */     .iot-solution__heading,
/* 7877  */     .iot-solution__main {
/* 7878  */         margin-bottom: 60px;
/* 7879  */     }
/* 7880  */     .iot-solution__main--inner {
/* 7881  */         padding: 40px;
/* 7882  */     }
/* 7883  */ }
/* 7884  */ @media (min-width: 1200px) {
/* 7885  */     .iot-solution {
/* 7886  */         padding: 100px 0;
/* 7887  */     }
/* 7888  */     .iot-solution__heading {
/* 7889  */         margin-bottom: 75px;
/* 7890  */     }
/* 7891  */ }
/* 7892  */ @media (min-width: 1440px) {
/* 7893  */     .iot-solution {
/* 7894  */         padding: 120px 0;
/* 7895  */     }
/* 7896  */     .iot-solution__heading {
/* 7897  */         margin-bottom: 90px;
/* 7898  */     }
/* 7899  */ }
/* 7900  */ .enhance-worldwide {

/* app.css */

/* 7901  */     background: var(--black);
/* 7902  */     padding: 40px 0;
/* 7903  */ }
/* 7904  */ .enhance-worldwide__main img {
/* 7905  */     width: 100%;
/* 7906  */     margin-bottom: 30px;
/* 7907  */ }
/* 7908  */ .enhance-worldwide__main h2 {
/* 7909  */     color: var(--white);
/* 7910  */ }
/* 7911  */ .enhance-worldwide__main p {
/* 7912  */     color: var(--white);
/* 7913  */ }
/* 7914  */ .enhance-worldwide__main {
/* 7915  */     margin-bottom: 40px;
/* 7916  */ }
/* 7917  */ .enhance-worldwide__row--main {
/* 7918  */     display: flex;
/* 7919  */     align-items: stretch;
/* 7920  */     flex-wrap: wrap;
/* 7921  */ }
/* 7922  */ .enhance-worldwide__grid {
/* 7923  */     max-width: 100%;
/* 7924  */     width: 100%;
/* 7925  */     position: relative;
/* 7926  */     margin: 0 0 30px;
/* 7927  */ }
/* 7928  */ .enhance-worldwide__grid:first-child {
/* 7929  */     padding-left: 0;
/* 7930  */ }
/* 7931  */ .enhance-worldwide__grid:last-child {
/* 7932  */     padding-right: 0;
/* 7933  */ }
/* 7934  */ .enhance-worldwide__grid:before {
/* 7935  */     content: "";
/* 7936  */     position: absolute;
/* 7937  */     height: 100%;
/* 7938  */     width: 2px;
/* 7939  */     background: rgba(243, 112, 35, 0.1);
/* 7940  */     right: 0;
/* 7941  */     display: none;
/* 7942  */ }
/* 7943  */ .enhance-worldwide__grid:last-child:before {
/* 7944  */     display: none;
/* 7945  */ }
/* 7946  */ .enhance-worldwide__grid--inner p {
/* 7947  */     color: var(--white);
/* 7948  */     font-size: 14px;
/* 7949  */     line-height: 22px;
/* 7950  */     margin: 0;

/* app.css */

/* 7951  */ }
/* 7952  */ .enhance-worldwide__row {
/* 7953  */     margin-bottom: 30px;
/* 7954  */ }
/* 7955  */ .enhance-worldwide__btn {
/* 7956  */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 7957  */ }
/* 7958  */ .enhance-worldwide__btn:hover {
/* 7959  */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 7960  */ }
/* 7961  */
/* 7962  */ @media (min-width: 768px) {
/* 7963  */     .enhance-worldwide {
/* 7964  */         padding: 60px 0;
/* 7965  */     }
/* 7966  */     .enhance-worldwide__row {
/* 7967  */         margin-bottom: 45px;
/* 7968  */     }
/* 7969  */     .enhance-worldwide__main {
/* 7970  */         margin-bottom: 60px;
/* 7971  */     }
/* 7972  */     .enhance-worldwide__grid--inner p {
/* 7973  */         font-size: 16px;
/* 7974  */         line-height: 24px;
/* 7975  */     }
/* 7976  */     .enhance-worldwide__grid {
/* 7977  */         max-width: calc(100% / 2);
/* 7978  */         padding: 0 28px;
/* 7979  */     }
/* 7980  */     .enhance-worldwide__grid:before {
/* 7981  */         display: block;
/* 7982  */     }
/* 7983  */     .enhance-worldwide__grid:last-child {
/* 7984  */         padding-left: 0;
/* 7985  */     }
/* 7986  */     .enhance-worldwide__grid:nth-last-child(2)::before {
/* 7987  */         display: none;
/* 7988  */     }
/* 7989  */ }
/* 7990  */ @media (min-width: 992px) {
/* 7991  */     .enhance-worldwide__grid:last-child {
/* 7992  */         padding-left: 38px;
/* 7993  */     }
/* 7994  */     .enhance-worldwide__grid:nth-last-child(2)::before {
/* 7995  */         display: block;
/* 7996  */     }
/* 7997  */     .enhance-worldwide {
/* 7998  */         padding: 80px 0;
/* 7999  */     }
/* 8000  */     .enhance-worldwide__row {

/* app.css */

/* 8001  */         margin-bottom: 60px;
/* 8002  */     }
/* 8003  */     .enhance-worldwide__main {
/* 8004  */         margin-bottom: 80px;
/* 8005  */     }
/* 8006  */     .enhance-worldwide__grid--inner p {
/* 8007  */         font-size: 18px;
/* 8008  */         line-height: 26px;
/* 8009  */     }
/* 8010  */     .enhance-worldwide__grid {
/* 8011  */         max-width: calc(100% / 3);
/* 8012  */         padding: 0 38px;
/* 8013  */         margin: 0;
/* 8014  */         justify-content: center;
/* 8015  */     }
/* 8016  */ }
/* 8017  */ @media (min-width: 1200px) {
/* 8018  */     .enhance-worldwide {
/* 8019  */         padding: 100px 0;
/* 8020  */     }
/* 8021  */     .enhance-worldwide__row {
/* 8022  */         margin-bottom: 75px;
/* 8023  */     }
/* 8024  */     .enhance-worldwide__main {
/* 8025  */         margin-bottom: 100px;
/* 8026  */     }
/* 8027  */     .enhance-worldwide__grid {
/* 8028  */         padding: 0 48px;
/* 8029  */         justify-content: unset;
/* 8030  */     }
/* 8031  */ }
/* 8032  */ @media (min-width: 1440px) {
/* 8033  */     .enhance-worldwide {
/* 8034  */         padding: 120px 0;
/* 8035  */     }
/* 8036  */     .enhance-worldwide__row {
/* 8037  */         margin-bottom: 90px;
/* 8038  */     }
/* 8039  */     .enhance-worldwide__main {
/* 8040  */         margin-bottom: 120px;
/* 8041  */     }
/* 8042  */     .enhance-worldwide__grid {
/* 8043  */         padding: 0 58px;
/* 8044  */     }
/* 8045  */ }
/* 8046  */ .inspire-imagination {
/* 8047  */     background: var(--black);
/* 8048  */ }
/* 8049  */ .inspire-imagination__cont h2 {
/* 8050  */     color: var(--white);

/* app.css */

/* 8051  */ }
/* 8052  */ .inspire-imagination__cont p {
/* 8053  */     color: var(--white);
/* 8054  */     margin: 0;
/* 8055  */ }
/* 8056  */ .inspire-imagination__cont img {
/* 8057  */     margin: 0 0 30px;
/* 8058  */ }
/* 8059  */ .inspire-imagination__cont {
/* 8060  */     margin-bottom: 30px;
/* 8061  */ }
/* 8062  */ .inspire-imagination__main--inner {
/* 8063  */     position: relative;
/* 8064  */     border: 2px solid rgba(255, 255, 255, 1);
/* 8065  */ }
/* 8066  */ .inspire-imagination__main--inner-img {
/* 8067  */     position: relative;
/* 8068  */ }
/* 8069  */ .inspire-imagination__main--inner-img:before {
/* 8070  */     content: "";
/* 8071  */     position: absolute;
/* 8072  */     width: 100%;
/* 8073  */     height: 100%;
/* 8074  */     background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
/* 8075  */ }
/* 8076  */ .inspire-imagination__main--inner-cont {
/* 8077  */     position: absolute;
/* 8078  */     top: 50%;
/* 8079  */     left: 50%;
/* 8080  */     transform: translate(-50% , -50%);
/* 8081  */     width: max-content;
/* 8082  */ }
/* 8083  */ .inspire-imagination__main--inner-cont h3 {
/* 8084  */     margin: 0;
/* 8085  */ }
/* 8086  */ .inspire-imagination__main--inner:before {
/* 8087  */     content: "";
/* 8088  */     position: absolute;
/* 8089  */     top: 0;
/* 8090  */     right: 0;
/* 8091  */     width: 0;
/* 8092  */     height: 0;
/* 8093  */     border-style: solid;
/* 8094  */     border-width: 0 64px 64px 0;
/* 8095  */     border-color: transparent #fff transparent transparent;
/* 8096  */     transition: all 500ms linear;
/* 8097  */     z-index: 1;
/* 8098  */ }
/* 8099  */ .inspire-imagination__main--grid {
/* 8100  */     margin: 0 0 30px;

/* app.css */

/* 8101  */ }
/* 8102  */ .inspire-imagination__main--grid:last-child {
/* 8103  */     margin: 0;
/* 8104  */ }
/* 8105  */
/* 8106  */ @media (min-width: 768px) {
/* 8107  */     .inspire-imagination__cont {
/* 8108  */         margin-bottom: 45px;
/* 8109  */     }
/* 8110  */     .inspire-imagination__main--grid {
/* 8111  */         margin: 0;
/* 8112  */     }
/* 8113  */ }
/* 8114  */ @media (min-width: 992px) {
/* 8115  */     .inspire-imagination__cont {
/* 8116  */         margin-bottom: 60px;
/* 8117  */     }
/* 8118  */ }
/* 8119  */ @media (min-width: 1200px) {
/* 8120  */     .inspire-imagination__cont {
/* 8121  */         margin-bottom: 75px;
/* 8122  */     }
/* 8123  */ }
/* 8124  */ @media (min-width: 1400px) {
/* 8125  */     .inspire-imagination__cont {
/* 8126  */         margin-bottom: 90px;
/* 8127  */     }
/* 8128  */ }
/* 8129  */ .best-service {
/* 8130  */     padding: 40px 0;
/* 8131  */ }
/* 8132  */ .best-service__head {
/* 8133  */     max-width: 1084px;
/* 8134  */     width: 100%;
/* 8135  */     margin: 0 auto;
/* 8136  */ }
/* 8137  */ .best-service__heading {
/* 8138  */     margin-bottom: 30px;
/* 8139  */ }
/* 8140  */ .best-service__main--grid {
/* 8141  */     margin: 0 0 30px;
/* 8142  */ }
/* 8143  */ .best-service__main--grid img {
/* 8144  */     width: 100%;
/* 8145  */     max-width: 60px;
/* 8146  */     margin: 0 0 40px;
/* 8147  */ }
/* 8148  */ .best-service__main--grid h3 {
/* 8149  */     color: var(--black);
/* 8150  */ }

/* app.css */

/* 8151  */ .best-service__main--grid ul {
/* 8152  */     margin: 0;
/* 8153  */ }
/* 8154  */ .best-service__main--grid ul li {
/* 8155  */     position: relative;
/* 8156  */     font-size: 14px;
/* 8157  */     line-height: 22px;
/* 8158  */     color: var(--black);
/* 8159  */     margin: 0 0 16px;
/* 8160  */     padding-left: 32px;
/* 8161  */ }
/* 8162  */ .best-service__main--grid ul li:last-child {
/* 8163  */     margin: 0;
/* 8164  */ }
/* 8165  */ .best-service__main--grid ul li:before {
/* 8166  */     content: "";
/* 8167  */     position: absolute;
/* 8168  */     background: url("/wp-content/themes/brainstream/images/rectangle-icon.svg");
/* 8169  */     width: 16px;
/* 8170  */     height: 16px;
/* 8171  */     left: 0;
/* 8172  */     top: 4px;
/* 8173  */ }
/* 8174  */
/* 8175  */ @media (min-width: 768px) {
/* 8176  */     .best-service__main--grid ul li:before {
/* 8177  */         width: 19px;
/* 8178  */         height: 19px;
/* 8179  */     }
/* 8180  */     .best-service__heading {
/* 8181  */         margin-bottom: 45px;
/* 8182  */     }
/* 8183  */     .best-service {
/* 8184  */         padding: 60px 0;
/* 8185  */     }
/* 8186  */     .best-service__main--grid img {
/* 8187  */         width: 80px;
/* 8188  */     }
/* 8189  */     .best-service__main--grid ul li {
/* 8190  */         font-size: 16px;
/* 8191  */         line-height: 24px;
/* 8192  */     }
/* 8193  */ }
/* 8194  */ @media (min-width: 992px) {
/* 8195  */     .best-service__main--grid ul li:before {
/* 8196  */         width: 22px;
/* 8197  */         height: 22px;
/* 8198  */     }
/* 8199  */     .best-service__heading {
/* 8200  */         margin-bottom: 60px;

/* app.css */

/* 8201  */     }
/* 8202  */     .best-service {
/* 8203  */         padding: 80px 0;
/* 8204  */     }
/* 8205  */     .best-service__main--grid img {
/* 8206  */         width: 100px;
/* 8207  */     }
/* 8208  */     .best-service__main--grid ul li {
/* 8209  */         font-size: 18px;
/* 8210  */         line-height: 26px;
/* 8211  */     }
/* 8212  */ }
/* 8213  */ @media (min-width: 1200px) {
/* 8214  */     .best-service__heading {
/* 8215  */         margin-bottom: 75px;
/* 8216  */     }
/* 8217  */     .best-service {
/* 8218  */         padding: 100px 0;
/* 8219  */     }
/* 8220  */ }
/* 8221  */ @media (min-width: 1440px) {
/* 8222  */     .best-service__main--grid {
/* 8223  */         margin: 0;
/* 8224  */     }
/* 8225  */     .best-service__heading {
/* 8226  */         margin-bottom: 90px;
/* 8227  */     }
/* 8228  */     .best-service {
/* 8229  */         padding: 120px 0;
/* 8230  */     }
/* 8231  */ }
/* 8232  */ .inner-masthead {
/* 8233  */     padding: 30px 0;
/* 8234  */     background: var(--black);
/* 8235  */ }
/* 8236  */ .inner-masthead p {
/* 8237  */     color: var(--white);
/* 8238  */     margin: 0;
/* 8239  */ }
/* 8240  */ .inner-masthead img {
/* 8241  */     width: 100%;
/* 8242  */     margin: 0 0 30px;
/* 8243  */ }
/* 8244  */
/* 8245  */ @media (min-width: 768px) {
/* 8246  */     .inner-masthead img {
/* 8247  */         margin: 0;
/* 8248  */     }
/* 8249  */     .inner-masthead {
/* 8250  */         padding: 45px 0;

/* app.css */

/* 8251  */     }
/* 8252  */ }
/* 8253  */ @media (min-width: 992px) {
/* 8254  */     .inner-masthead {
/* 8255  */         padding: 60px 0;
/* 8256  */     }
/* 8257  */ }
/* 8258  */ @media (min-width: 1200px) {
/* 8259  */     .inner-masthead {
/* 8260  */         padding: 75px 0;
/* 8261  */     }
/* 8262  */ }
/* 8263  */ @media (min-width: 1440px) {
/* 8264  */     .inner-masthead {
/* 8265  */         padding: 90px 0;
/* 8266  */     }
/* 8267  */ }
/* 8268  */ .industries-heading.bg_black{
/* 8269  */     background-color: #000000;
/* 8270  */     margin-bottom: -3px;
/* 8271  */ }
/* 8272  */ .industries-heading.bg_black h2,
/* 8273  */ .industries-heading.bg_black p{
/* 8274  */     color: #ffffff;
/* 8275  */ }
/* 8276  */
/* 8277  */ .industries-heading {
/* 8278  */     padding: 40px 0 0;
/* 8279  */ }
/* 8280  */ .industries-heading__head {
/* 8281  */     max-width: 1390px;
/* 8282  */     width: 100%;
/* 8283  */     margin: 0 auto;
/* 8284  */ }
/* 8285  */ .industries-heading__head h2 {
/* 8286  */     max-width: 1163px;
/* 8287  */     width: 100%;
/* 8288  */     margin: 0 auto 20px;
/* 8289  */ }
/* 8290  */ .margin_remove .industries-heading__head h2 {
/* 8291  */     margin: 0 auto;
/* 8292  */ }
/* 8293  */ .industries-heading__head p {
/* 8294  */     margin: 0;
/* 8295  */ }
/* 8296  */
/* 8297  */ @media (min-width: 768px) {
/* 8298  */     .industries-heading {
/* 8299  */         padding: 60px 0 0;
/* 8300  */     }

/* app.css */

/* 8301  */ }
/* 8302  */ @media (min-width: 992px) {
/* 8303  */     .industries-heading {
/* 8304  */         padding: 80px 0 0;
/* 8305  */     }
/* 8306  */ }
/* 8307  */ @media (min-width: 1200px) {
/* 8308  */     .industries-heading {
/* 8309  */         padding: 100px 0 0;
/* 8310  */     }
/* 8311  */ }
/* 8312  */ @media (min-width: 1440px) {
/* 8313  */     .industries-heading {
/* 8314  */         padding: 120px 0 0;
/* 8315  */     }
/* 8316  */ }
/* 8317  */ .delivering-range__white-bg {
/* 8318  */     padding: 30px 0;
/* 8319  */ }
/* 8320  */ .delivering-range__main {
/* 8321  */     position: relative;
/* 8322  */     padding: 20px 0;
/* 8323  */ }
/* 8324  */ .delivering-range__main:last-child {
/* 8325  */     margin: 0;
/* 8326  */ }
/* 8327  */ .delivering-range__bg {
/* 8328  */     height: 100%;
/* 8329  */     top: 50%;
/* 8330  */     transform: translateY(-50%);
/* 8331  */     position: absolute;
/* 8332  */     left: 50%;
/* 8333  */     z-index: 0;
/* 8334  */     width: 100vw;
/* 8335  */     background: rgba(0, 0, 0, 0.05);
/* 8336  */     display: none;
/* 8337  */     z-index: 0  ;
/* 8338  */ }
/* 8339  */ .delivering-range__main--inner h3 {
/* 8340  */     color: var(--black);
/* 8341  */ }
/* 8342  */ .delivering-range__main img {
/* 8343  */     width: 100%;
/* 8344  */     position: relative;
/* 8345  */     z-index: 1;
/* 8346  */ }
/* 8347  */ .delivering-range__main:nth-child(odd) .row {
/* 8348  */     flex-direction: row-reverse;
/* 8349  */ }
/* 8350  */ .delivering-range__main:nth-child(even) .delivering-range__bg {

/* app.css */

/* 8351  */     left: auto;
/* 8352  */     right: 50%;
/* 8353  */ }
/* 8354  */ .delivering-range__main h3 {
/* 8355  */     margin-top: 10px;
/* 8356  */     color: var(--black);
/* 8357  */     line-height: 3.6rem;
/* 8358  */ }
/* 8359  */ .delivering-range__main p {
/* 8360  */     margin: 0;
/* 8361  */ }
/* 8362  */ .delivering-range__main ul {
/* 8363  */     margin: 0;
/* 8364  */ }
/* 8365  */ .delivering-range__main ul li {
/* 8366  */     color: var(--black);
/* 8367  */     margin: 0 0 20px;
/* 8368  */     padding-left: 20px;
/* 8369  */     position: relative;
/* 8370  */     font-size: 16px;
/* 8371  */     line-height: 24px;
/* 8372  */ }
/* 8373  */ .delivering-range__main ul li::before {
/* 8374  */     content: "";
/* 8375  */     position: absolute;
/* 8376  */     width: 6px;
/* 8377  */     height: 6px;
/* 8378  */     background: var(--black);
/* 8379  */     border-radius: 10px;
/* 8380  */     left: 0;
/* 8381  */     top: 15px;
/* 8382  */ }
/* 8383  */ .delivering-range__main ul li:last-child {
/* 8384  */     margin: 0;
/* 8385  */ }
/* 8386  */ .delivering-range__white-bg.black-bg {
/* 8387  */     background: var(--black);
/* 8388  */ }
/* 8389  */ .delivering-range__white-bg.black-bg h3, .delivering-range__white-bg.black-bg p {
/* 8390  */     color: var(--white);
/* 8391  */ }
/* 8392  */ .delivering-range__white-bg.black-bg .delivering-range__bg {
/* 8393  */     background: rgba(255, 255, 255, 0.1);
/* 8394  */ }
/* 8395  */
/* 8396  */
/* 8397  */ @media (min-width: 768px) {
/* 8398  */     .delivering-range__white-bg {
/* 8399  */         padding: 45px 0;
/* 8400  */     }

/* app.css */

/* 8401  */     .delivering-range__main {
/* 8402  */         padding: 30px 0;
/* 8403  */     }
/* 8404  */     .delivering-range__main img {
/* 8405  */         margin: 30px 0;
/* 8406  */     }
/* 8407  */     .delivering-range__bg {
/* 8408  */         display: block;
/* 8409  */     }
/* 8410  */     .delivering-range__main ul li {
/* 8411  */         font-size: 18px;
/* 8412  */         line-height: 26px;
/* 8413  */     }
/* 8414  */ }
/* 8415  */ @media (min-width: 992px) {
/* 8416  */     .delivering-range__white-bg {
/* 8417  */         padding: 60px 0;
/* 8418  */     }
/* 8419  */     .delivering-range__main img {
/* 8420  */         margin: 60px 0;
/* 8421  */     }
/* 8422  */     .delivering-range__main ul li {
/* 8423  */         font-size: 20px;
/* 8424  */         line-height: 28px;
/* 8425  */     }
/* 8426  */ }
/* 8427  */ @media (min-width: 1200px) {
/* 8428  */     .delivering-range__white-bg {
/* 8429  */         padding: 75px 0;
/* 8430  */     }
/* 8431  */     .delivering-range__main ul li {
/* 8432  */         font-size: 22px;
/* 8433  */         line-height: 30px;
/* 8434  */     }
/* 8435  */ }
/* 8436  */ @media (min-width: 1440px) {
/* 8437  */     .delivering-range__main p {
/* 8438  */         font-size: 2.4rem;
/* 8439  */         line-height: 3.2rem;
/* 8440  */     }
/* 8441  */     .delivering-range__main ul li {
/* 8442  */         font-size: 24px;
/* 8443  */         line-height: 32px;
/* 8444  */     }
/* 8445  */ }
/* 8446  */ @media (min-width: 1600px) {
/* 8447  */     .delivering-range__main h3 {
/* 8448  */         font-size: 4.2rem;
/* 8449  */         line-height: 5.6rem;
/* 8450  */         margin-bottom: 2rem;

/* app.css */

/* 8451  */     }
/* 8452  */ }
/* 8453  */ .title-banner {
/* 8454  */     background: var(--black);
/* 8455  */     padding: 40px 0;
/* 8456  */ }
/* 8457  */ .title-banner__heading h1 {
/* 8458  */     background: linear-gradient(245.24deg, #FF0000 0%, #F78D1E 100%);
/* 8459  */     -webkit-background-clip: text;
/* 8460  */     background-clip: text;
/* 8461  */     -webkit-text-fill-color: transparent;
/* 8462  */     font-size: 40px;
/* 8463  */     line-height: 65px;
/* 8464  */ }
/* 8465  */ .title-banner__heading p {
/* 8466  */     color: var(--white);
/* 8467  */     margin: 0;
/* 8468  */     position: relative;
/* 8469  */     padding-left: 45px;
/* 8470  */     font-size: 16px;
/* 8471  */     line-height: 30px;
/* 8472  */ }
/* 8473  */ .title-banner__heading {
/* 8474  */     max-width: 1078px;
/* 8475  */     width: 100%;
/* 8476  */ }
/* 8477  */ .title-banner__heading p:before {
/* 8478  */     content: "";
/* 8479  */     position: absolute;
/* 8480  */     width: 40px;
/* 8481  */     height: 3px;
/* 8482  */     background: linear-gradient(245.24deg, #FF0000 0%, #F78D1E 100%);
/* 8483  */     left: 0;
/* 8484  */     top: 15px;
/* 8485  */ }
/* 8486  */
/* 8487  */ @media (min-width: 768px) {
/* 8488  */     .title-banner {
/* 8489  */         padding: 60px 0;
/* 8490  */     }
/* 8491  */     .title-banner__heading h1 {
/* 8492  */         font-size: 60px;
/* 8493  */         line-height: 85px;
/* 8494  */     }
/* 8495  */     .title-banner__heading p {
/* 8496  */         font-size: 20px;
/* 8497  */         line-height: 38px;
/* 8498  */         padding-left: 150px;
/* 8499  */     }
/* 8500  */     .title-banner__heading p:before {

/* app.css */

/* 8501  */         width: 130px;
/* 8502  */         height: 6px;
/* 8503  */         top: 23px;
/* 8504  */     }
/* 8505  */ }
/* 8506  */ @media (min-width: 992px) {
/* 8507  */     .title-banner {
/* 8508  */         padding: 80px 0;
/* 8509  */     }
/* 8510  */     .title-banner__heading h1 {
/* 8511  */         font-size: 80px;
/* 8512  */         line-height: 105px;
/* 8513  */     }
/* 8514  */     .title-banner__heading p {
/* 8515  */         font-size: 22px;
/* 8516  */         line-height: 40px;
/* 8517  */         padding-left: 200px;
/* 8518  */     }
/* 8519  */     .title-banner__heading p:before {
/* 8520  */         width: 170px;
/* 8521  */     }
/* 8522  */ }
/* 8523  */ @media (min-width: 1200px) {
/* 8524  */     .title-banner {
/* 8525  */         padding: 100px 0;
/* 8526  */     }
/* 8527  */     .title-banner__heading h1 {
/* 8528  */         font-size: 100px;
/* 8529  */         line-height: 125px;
/* 8530  */     }
/* 8531  */     .title-banner__heading p {
/* 8532  */         font-size: 24px;
/* 8533  */         line-height: 42px;
/* 8534  */         padding-left: 278px;
/* 8535  */     }
/* 8536  */     .title-banner__heading p:before {
/* 8537  */         width: 248px;
/* 8538  */     }
/* 8539  */ }
/* 8540  */ @media (min-width: 1440px) {
/* 8541  */     .title-banner {
/* 8542  */         padding: 120px 0;
/* 8543  */     }
/* 8544  */     .title-banner__heading h1 {
/* 8545  */         font-size: 120px;
/* 8546  */         line-height: 145px;
/* 8547  */     }
/* 8548  */     .title-banner__heading p {
/* 8549  */         font-size: 26px;
/* 8550  */         line-height: 44px;

/* app.css */

/* 8551  */     }
/* 8552  */ }
/* 8553  */ @media (min-width: 1600px) {
/* 8554  */     .title-banner__heading p {
/* 8555  */         font-size: 30px;
/* 8556  */         line-height: 48px;
/* 8557  */     }
/* 8558  */ }
/* 8559  */ .case-studies-grid {
/* 8560  */     padding: 40px 0;
/* 8561  */ }
/* 8562  */ .case-studies-grid__grid {
/* 8563  */     margin: 0 0 30px;
/* 8564  */ }
/* 8565  */ .case-studies-grid__grid--img {
/* 8566  */     position: relative;
/* 8567  */     margin: 0 0 20px;
/* 8568  */ }
/* 8569  */ .case-studies-grid__grid--cont h3 {
/* 8570  */     color: var(--black);
/* 8571  */     margin-bottom: 6px;
/* 8572  */ }
/* 8573  */ .case-studies-grid__grid--cont p {
/* 8574  */     color: var(--orange);
/* 8575  */     margin: 0;
/* 8576  */ }
/* 8577  */ .case-studies-grid__grid:last-child {
/* 8578  */     margin: 0;
/* 8579  */ }
/* 8580  */
/* 8581  */
/* 8582  */ .case-detail__row {
/* 8583  */ 	padding: 60px 0;
/* 8584  */ }
/* 8585  */ .case-detail__grid .case-detail__row:nth-child(odd) {
/* 8586  */ 	background-color: #F2F2F2;
/* 8587  */ }
/* 8588  */ .case-detail__grid .case-detail__row:nth-child(even) {
/* 8589  */ 	background-color: #FFFFFF;
/* 8590  */ }
/* 8591  */
/* 8592  */ .case-detail__grid .case-detail__row:nth-child(odd) > .container > .row {
/* 8593  */     flex-direction: row-reverse;
/* 8594  */ }
/* 8595  */
/* 8596  */ .case-detail__grid .case-detail__row:nth-child(even) > .container > .row {
/* 8597  */     flex-direction: row;
/* 8598  */ }
/* 8599  */
/* 8600  */ @media (min-width: 768px) {

/* app.css */

/* 8601  */     .case-studies-grid {
/* 8602  */         padding: 60px 0;
/* 8603  */     }
/* 8604  */     .case-studies-grid__grid {
/* 8605  */         margin: 0 0 45px;
/* 8606  */     }
/* 8607  */ }
/* 8608  */ @media (min-width: 992px) {
/* 8609  */     .case-studies-grid {
/* 8610  */         padding: 80px 0;
/* 8611  */     }
/* 8612  */     .case-studies-grid__grid {
/* 8613  */         margin: 0 0 60px;
/* 8614  */     }
/* 8615  */ }
/* 8616  */ @media (min-width: 1200px) {
/* 8617  */     .case-studies-grid {
/* 8618  */         padding: 100px 0;
/* 8619  */     }
/* 8620  */ }
/* 8621  */ @media (min-width: 1440px) {
/* 8622  */     .case-studies-grid {
/* 8623  */         padding: 120px 0;
/* 8624  */     }
/* 8625  */ }
/* 8626  */ .review-video {
/* 8627  */     padding: 30px 0;
/* 8628  */     background: linear-gradient(245.24deg, #EE4123 0%, #1C71D4 100%);
/* 8629  */ }
/* 8630  */ .review-video__cont--blockquote {
/* 8631  */     width: 40px;
/* 8632  */     height: 40px;
/* 8633  */     display: block;
/* 8634  */ }
/* 8635  */ .review-video__cont--blockquote img {
/* 8636  */     width: 100%;
/* 8637  */     height: 100%;
/* 8638  */     filter: brightness(10);
/* 8639  */ }
/* 8640  */ .review-video__img--video {
/* 8641  */     position: absolute;
/* 8642  */     top: 50%;
/* 8643  */     left: 50%;
/* 8644  */     transform: translate(-50%, -50%);
/* 8645  */ }
/* 8646  */ .review-video__img--video-ripple {
/* 8647  */     position: absolute;
/* 8648  */     top: 50%;
/* 8649  */     left: 50%;
/* 8650  */     transform: translate(-50% , -50%);

/* app.css */

/* 8651  */     width: 100%;
/* 8652  */     height: 100%;
/* 8653  */ }
/* 8654  */ .review-video__img {
/* 8655  */     position: relative;
/* 8656  */ }
/* 8657  */ .review-video__img:before {
/* 8658  */     content: "";
/* 8659  */     position: absolute;
/* 8660  */     width: 100%;
/* 8661  */     height: 100%;
/* 8662  */     background: rgba(0, 0, 0, 0.4);
/* 8663  */ }
/* 8664  */ .review-video__img--video:before,
/* 8665  */ .review-video__img--video:after,
/* 8666  */ .review-video__img--video-ripple:before,
/* 8667  */ .review-video__img--video-ripple:after{
/* 8668  */     content: '';
/* 8669  */     display: block;
/* 8670  */     position: absolute;
/* 8671  */     top: 0;
/* 8672  */     right: 0;
/* 8673  */     bottom: 0;
/* 8674  */     left: 0;
/* 8675  */     border: 1px solid var(--orange);
/* 8676  */     border-radius: 50%;
/* 8677  */ }
/* 8678  */ .review-video__img--video:before{
/* 8679  */   animation: ripple 2s linear 0.5s infinite;
/* 8680  */ }
/* 8681  */ .review-video__img--video:after {
/* 8682  */   animation: ripple 2s linear 1s infinite;
/* 8683  */ }
/* 8684  */ .review-video__img--video-ripple:before {
/* 8685  */   animation: ripple 2s linear 1.5s infinite;
/* 8686  */ }
/* 8687  */ .review-video__img--video-ripple:after {
/* 8688  */   animation: ripple 2s linear 2s infinite;
/* 8689  */ }
/* 8690  */
/* 8691  */ @keyframes ripple{
/* 8692  */   0% { transform: scale(1); }
/* 8693  */   50% { transform: scale(1.3); opacity:1; }
/* 8694  */   100% { transform: scale(1.6); opacity:0; }
/* 8695  */ }
/* 8696  */ .review-video__cont--head {
/* 8697  */     padding-left: 30px;
/* 8698  */     padding-top: 25px;
/* 8699  */     margin: 0 0 30px;
/* 8700  */ }

/* app.css */

/* 8701  */ .review-video__cont--head h2 {
/* 8702  */     color: var(--white);
/* 8703  */     font-style: italic;
/* 8704  */     font-size: 26px;
/* 8705  */     line-height: 42px;
/* 8706  */     margin: 0 0 20px;
/* 8707  */ }
/* 8708  */ .review-video__cont--head h3 {
/* 8709  */     margin: 0 0 8px;
/* 8710  */ }
/* 8711  */ .review-video__cont--head p {
/* 8712  */     color: rgba(255, 255, 255, 0.6);
/* 8713  */     font-size: 14px;
/* 8714  */     line-height: 20px;
/* 8715  */     margin: 0;
/* 8716  */ }
/* 8717  */
/* 8718  */ @media (min-width: 768px) {
/* 8719  */     .review-video {
/* 8720  */         padding: 45px 0;
/* 8721  */     }
/* 8722  */     .review-video__cont--head h2 {
/* 8723  */         font-size: 32px;
/* 8724  */         line-height: 48px;
/* 8725  */         margin: 0 0 30px;
/* 8726  */     }
/* 8727  */     .review-video__cont--head p {
/* 8728  */         font-size: 16px;
/* 8729  */         line-height: 22px;
/* 8730  */     }
/* 8731  */     .review-video__cont--head {
/* 8732  */         padding-left: 60px;
/* 8733  */         padding-top: 35px;
/* 8734  */     }
/* 8735  */     .review-video__cont--blockquote {
/* 8736  */         width: 50px;
/* 8737  */         height: 50px;
/* 8738  */     }
/* 8739  */ }
/* 8740  */ @media (min-width: 992px) {
/* 8741  */     .review-video {
/* 8742  */         padding: 60px 0;
/* 8743  */     }
/* 8744  */     .review-video__cont--head h2 {
/* 8745  */         font-size: 40px;
/* 8746  */         line-height: 56px;
/* 8747  */         margin: 0 0 40px;
/* 8748  */     }
/* 8749  */     .review-video__cont--head p {
/* 8750  */         font-size: 18px;

/* app.css */

/* 8751  */         line-height: 24px;
/* 8752  */     }
/* 8753  */     .review-video__cont--head {
/* 8754  */         padding-left: 90px;
/* 8755  */         padding-top: 45px;
/* 8756  */     }
/* 8757  */     .review-video__cont--blockquote {
/* 8758  */         width: 60px;
/* 8759  */         height: 60px;
/* 8760  */     }
/* 8761  */ }
/* 8762  */ @media (min-width: 1200px) {
/* 8763  */     .review-video {
/* 8764  */         padding: 75px 0;
/* 8765  */     }
/* 8766  */     .review-video__cont--head h2 {
/* 8767  */         font-size: 48px;
/* 8768  */         line-height: 64px;
/* 8769  */         margin: 0 0 50px;
/* 8770  */     }
/* 8771  */     .review-video__cont--head {
/* 8772  */         padding-left: 120px;
/* 8773  */     }
/* 8774  */ }
/* 8775  */ @media (min-width: 1440px) {
/* 8776  */     .review-video {
/* 8777  */         padding: 90px 0;
/* 8778  */     }
/* 8779  */     .review-video__cont--head h2 {
/* 8780  */         font-size: 56px;
/* 8781  */         line-height: 72px;
/* 8782  */         margin: 0 0 60px;
/* 8783  */     }
/* 8784  */     .review-video__cont--head {
/* 8785  */         padding-left: 140px;
/* 8786  */     }
/* 8787  */ }
/* 8788  */ .case-studies-inner {
/* 8789  */     padding: 40px 0;
/* 8790  */ }
/* 8791  */ .case-studies-inner__two-grid {
/* 8792  */     margin-bottom: 30px;
/* 8793  */ }
/* 8794  */ .case-studies-inner__two-grid--img,
/* 8795  */ .case-studies-inner__three-grid--img {
/* 8796  */     position: relative;
/* 8797  */     margin: 0 0 20px;
/* 8798  */     display: block;
/* 8799  */ }
/* 8800  */ .case-studies-inner__two-grid--img img,

/* app.css */

/* 8801  */ .case-studies-inner__three-grid--img img {
/* 8802  */     width: 100%;
/* 8803  */ }
/* 8804  */ .case-studies-inner__two-grid--cont h3,
/* 8805  */ .case-studies-inner__three-grid--cont h3 {
/* 8806  */     color: var(--black);
/* 8807  */     margin: 0 0 6px;
/* 8808  */ }
/* 8809  */ .case-studies-inner__two-grid--cont p {
/* 8810  */     color: var(--orange);
/* 8811  */     margin: 0;
/* 8812  */ }
/* 8813  */ .case-studies-inner__three-grid--img:before {
/* 8814  */     width: 40px;
/* 8815  */     height: 40px;
/* 8816  */     right: 15px;
/* 8817  */     top: 15px;
/* 8818  */ }
/* 8819  */ .case-studies-inner__three-grid--cont p {
/* 8820  */     color: var(--orange);
/* 8821  */     margin: 0;
/* 8822  */     font-size: 14px;
/* 8823  */     line-height: 22px;
/* 8824  */ }
/* 8825  */ .case-studies-inner__three-inner,
/* 8826  */ .case-studies-inner__grid {
/* 8827  */     margin: 0 0 30px;
/* 8828  */ }
/* 8829  */ .case-studies-inner__three-inner:last-child,
/* 8830  */ .case-studies-inner__grid:last-child {
/* 8831  */     margin: 0;
/* 8832  */ }
/* 8833  */
/* 8834  */ @media (min-width: 768px) {
/* 8835  */     .case-studies-inner__three-grid--cont p {
/* 8836  */         font-size: 16px;
/* 8837  */         line-height: 24px;
/* 8838  */     }
/* 8839  */     .case-studies-inner {
/* 8840  */         padding: 60px 0;
/* 8841  */     }
/* 8842  */
/* 8843  */     .case-studies-inner__three-inner,
/* 8844  */     .case-studies-inner__grid,
/* 8845  */     .case-studies-inner__three-inner:last-child,
/* 8846  */     .case-studies-inner__grid:last-child {
/* 8847  */         margin: 20px 0;
/* 8848  */     }
/* 8849  */ }
/* 8850  */ @media (min-width: 992px) {

/* app.css */

/* 8851  */     .case-studies-inner__three-grid--cont p {
/* 8852  */         font-size: 18px;
/* 8853  */         line-height: 26px;
/* 8854  */     }
/* 8855  */     .case-studies-inner {
/* 8856  */         padding: 80px 0;
/* 8857  */     }
/* 8858  */     .case-studies-inner__two-grid {
/* 8859  */         margin-bottom: 60px;
/* 8860  */     }
/* 8861  */
/* 8862  */ }
/* 8863  */ @media (min-width: 1200px) {
/* 8864  */     .case-studies-inner__three-grid--cont h3 {
/* 8865  */         font-size: 30px;
/* 8866  */         line-height: 36px;
/* 8867  */     }
/* 8868  */     .case-studies-inner {
/* 8869  */         padding: 100px 0;
/* 8870  */     }
/* 8871  */     .case-studies-inner__two-grid {
/* 8872  */         margin-bottom: 75px;
/* 8873  */     }
/* 8874  */ }
/* 8875  */ @media (min-width: 1440px) {
/* 8876  */     .case-studies-inner {
/* 8877  */         padding: 120px 0;
/* 8878  */     }
/* 8879  */     .case-studies-inner__two-grid {
/* 8880  */         margin-bottom: 90px;
/* 8881  */     }
/* 8882  */ }
/* 8883  */ .client-review .container{
/* 8884  */     padding: 0;
/* 8885  */ }
/* 8886  */ .client-review {
/* 8887  */     position: relative;
/* 8888  */ }
/* 8889  */ .client-review__bg {
/* 8890  */     position: absolute;
/* 8891  */     width: 100%;
/* 8892  */     height: 100%;
/* 8893  */     object-fit: cover;
/* 8894  */     top: 0;
/* 8895  */     left: 0;
/* 8896  */ }
/* 8897  */ .client-review__img {
/* 8898  */     margin: 0 0 30px;
/* 8899  */ }
/* 8900  */ .client-review__blockquote img {

/* app.css */

/* 8901  */     filter: brightness(10);
/* 8902  */     transform: rotate(180deg);
/* 8903  */ }
/* 8904  */ .client-review__cont {
/* 8905  */     margin: 0 15px;
/* 8906  */ }
/* 8907  */ .client-review__blockquote img {
/* 8908  */     float: right;
/* 8909  */ }
/* 8910  */ .client-review__blockquote {
/* 8911  */     display: block;
/* 8912  */     height: 40px;
/* 8913  */     width: 40px;
/* 8914  */     float: right;
/* 8915  */     margin-right: 15px;
/* 8916  */     margin-bottom: 15px;
/* 8917  */ }
/* 8918  */ .client-review__cont p {
/* 8919  */     color: var(--white);
/* 8920  */     margin: 0;
/* 8921  */ }
/* 8922  */ .client-review__cont--auth {
/* 8923  */     margin-top: 30px;
/* 8924  */ }
/* 8925  */ .client-review__cont--auth h3 {
/* 8926  */     margin: 0 0 8px;
/* 8927  */ }
/* 8928  */ .client-review__cont--auth p {
/* 8929  */     font-size: 14px;
/* 8930  */     line-height: 22px;
/* 8931  */     color: rgba(255, 255, 255, 0.6);
/* 8932  */     margin: 0;
/* 8933  */ }
/* 8934  */
/* 8935  */ @media (min-width: 768px) {
/* 8936  */     .client-review__cont--auth {
/* 8937  */         margin-top: 30px;
/* 8938  */     }
/* 8939  */     .client-review__img {
/* 8940  */         margin: 0;
/* 8941  */     }
/* 8942  */     .client-review__blockquote {
/* 8943  */         width: 50px;
/* 8944  */         height: 50px;
/* 8945  */     }
/* 8946  */     .client-review__cont--auth p {
/* 8947  */         font-size: 16px;
/* 8948  */         line-height: 24px;
/* 8949  */     }
/* 8950  */     .client-review__blockquote{

/* app.css */

/* 8951  */         margin-bottom: 0;
/* 8952  */         margin-right: 0;
/* 8953  */         width: 28px;
/* 8954  */         height: 28px;
/* 8955  */         position: absolute;
/* 8956  */         right: 25px;
/* 8957  */         bottom: 0;
/* 8958  */     }
/* 8959  */ }
/* 8960  */ @media (min-width: 992px) {
/* 8961  */     .client-review__cont--auth {
/* 8962  */         margin-top: 40px;
/* 8963  */     }
/* 8964  */     .client-review__blockquote {
/* 8965  */         width: 60px;
/* 8966  */         height: 60px;
/* 8967  */         position: static;
/* 8968  */     }
/* 8969  */     .client-review__cont--auth p {
/* 8970  */         font-size: 18px;
/* 8971  */         line-height: 26px;
/* 8972  */     }
/* 8973  */ }
/* 8974  */
/* 8975  */ .what-next {
/* 8976  */     padding: 40px 0;
/* 8977  */     background: rgba(243, 112, 35, 0.05);
/* 8978  */ }
/* 8979  */ .what-next__heading {
/* 8980  */     margin-bottom: 30px;
/* 8981  */ }
/* 8982  */ .what-next__heading h2 {
/* 8983  */     margin: 0;
/* 8984  */ }
/* 8985  */ .what-next__main--inner {
/* 8986  */     max-width: 422px;
/* 8987  */     width: 100%;
/* 8988  */     margin: 0 auto;
/* 8989  */     position: relative;
/* 8990  */     text-align: center;
/* 8991  */ }
/* 8992  */ .what-next__main--grid {
/* 8993  */     display: flex;
/* 8994  */     align-items: stretch;
/* 8995  */     position: relative;
/* 8996  */     margin: 0 0 30px;
/* 8997  */ }
/* 8998  */ .what-next__main--grid:last-child {
/* 8999  */     margin: 0;
/* 9000  */ }

/* app.css */

/* 9001  */ .what-next__main--grid:before {
/* 9002  */     content: "";
/* 9003  */     position: absolute;
/* 9004  */     height: 100%;
/* 9005  */     width: 2px;
/* 9006  */     background: rgba(243, 112, 35, 0.1);
/* 9007  */     right: 0;
/* 9008  */ }
/* 9009  */ .what-next__main--inner-cont h3 {
/* 9010  */     color: var(--black);
/* 9011  */     margin: 0 0 12px;
/* 9012  */ }
/* 9013  */ .what-next__main--inner-cont p {
/* 9014  */     font-size: 14px;
/* 9015  */     line-height: 22px;
/* 9016  */ }
/* 9017  */ .what-next__main--grid:last-child:before {
/* 9018  */     display: none;
/* 9019  */ }
/* 9020  */ .what-next__main--inner-img {
/* 9021  */     max-width: 80px;
/* 9022  */     width: 100%;
/* 9023  */     height: 80px;
/* 9024  */     margin: 0 auto 15px;
/* 9025  */     box-shadow: 0px 0px 10px 0px rgba(243, 112, 35, 0.1);
/* 9026  */ }
/* 9027  */ .what-next__main--inner-img img {
/* 9028  */     width: 100%;
/* 9029  */ }
/* 9030  */
/* 9031  */ @media (min-width: 768px) {
/* 9032  */     .what-next {
/* 9033  */         padding: 60px 0;
/* 9034  */     }
/* 9035  */     .what-next__heading {
/* 9036  */         margin-bottom: 45px;
/* 9037  */     }
/* 9038  */     .what-next__main--inner-cont p {
/* 9039  */         font-size: 16px;
/* 9040  */         line-height: 24px;
/* 9041  */     }
/* 9042  */     .what-next__main--grid {
/* 9043  */         margin: 0;
/* 9044  */     }
/* 9045  */     .what-next__main--inner-img {
/* 9046  */         max-width: 90px;
/* 9047  */         height: 90px;
/* 9048  */         margin: 0 auto 20px;
/* 9049  */     }
/* 9050  */ }

/* app.css */

/* 9051  */ @media (min-width: 992px) {
/* 9052  */     .what-next {
/* 9053  */         padding: 80px 0;
/* 9054  */     }
/* 9055  */     .what-next__main--inner-cont p {
/* 9056  */         font-size: 18px;
/* 9057  */         line-height: 26px;
/* 9058  */     }
/* 9059  */     .what-next__heading {
/* 9060  */         margin-bottom: 60px;
/* 9061  */     }
/* 9062  */     .what-next__main--inner-img {
/* 9063  */         max-width: 100px;
/* 9064  */         height: 100px;
/* 9065  */         margin: 0 auto 25px;
/* 9066  */     }
/* 9067  */ }
/* 9068  */ @media (min-width: 1200px) {
/* 9069  */     .what-next__heading {
/* 9070  */         margin-bottom: 75px;
/* 9071  */     }
/* 9072  */     .what-next {
/* 9073  */         padding: 100px 0;
/* 9074  */     }
/* 9075  */     .what-next__main--inner-img {
/* 9076  */         max-width: 110px;
/* 9077  */         height: 110px;
/* 9078  */         margin: 0 auto 30px;
/* 9079  */     }
/* 9080  */ }
/* 9081  */ @media (min-width: 1440px) {
/* 9082  */     .what-next__heading {
/* 9083  */         margin-bottom: 90px;
/* 9084  */     }
/* 9085  */     .what-next {
/* 9086  */         padding: 120px 0;
/* 9087  */     }
/* 9088  */     .what-next__main--inner-img {
/* 9089  */         max-width: 120px;
/* 9090  */         height: 120px;
/* 9091  */     }
/* 9092  */ }
/* 9093  */ .contact-review {
/* 9094  */     padding: 40px 0;
/* 9095  */     position: relative;
/* 9096  */ }
/* 9097  */ .contact-review__heading {
/* 9098  */     margin-bottom: 30px;
/* 9099  */ }
/* 9100  */ .contact-review__heading h2 {

/* app.css */

/* 9101  */     max-width: 1400px;
/* 9102  */     width: 100%;
/* 9103  */     text-align: center;
/* 9104  */     margin: 0 auto;
/* 9105  */ }
/* 9106  */ .contact-review__main {
/* 9107  */     justify-content: center;
/* 9108  */     align-items: stretch;
/* 9109  */ }
/* 9110  */ .contact-review__main--grid {
/* 9111  */     border-right: 0;
/* 9112  */     padding: 20px 15px;
/* 9113  */     border-bottom: 2px solid rgba(243, 112, 35, 0.1);
/* 9114  */ }
/* 9115  */ .contact-review__main--grid:last-child {
/* 9116  */     border-bottom: 0;
/* 9117  */ }
/* 9118  */ .contact-review__main--inner {
/* 9119  */     max-width: 390px;
/* 9120  */     width: 100%;
/* 9121  */     margin: 0 auto;
/* 9122  */ }
/* 9123  */ .contact-review__main--inner p {
/* 9124  */     margin: 0;
/* 9125  */ }
/* 9126  */ .contact-review__main--inner img {
/* 9127  */     margin: 0 0 30px;
/* 9128  */ }
/* 9129  */
/* 9130  */ @media (min-width: 576px) {
/* 9131  */     .contact-review__main--grid {
/* 9132  */         border-right: 2px solid rgba(243, 112, 35, 0.1);
/* 9133  */     }
/* 9134  */     .contact-review__main--grid:nth-child(2n),.contact-review__main--grid:last-child {
/* 9135  */         border-right: 0;
/* 9136  */     }
/* 9137  */     .contact-review__main--grid:last-child {
/* 9138  */         border-bottom: 0;
/* 9139  */     }
/* 9140  */ }
/* 9141  */ @media (min-width: 768px) {
/* 9142  */     .contact-review {
/* 9143  */         padding: 60px 0;
/* 9144  */     }
/* 9145  */     .contact-review__heading {
/* 9146  */         margin-bottom: 45px;
/* 9147  */     }
/* 9148  */     .contact-review__main--grid:nth-child(2n) {
/* 9149  */         border-right: 2px solid rgba(243, 112, 35, 0.1);
/* 9150  */     }

/* app.css */

/* 9151  */     .contact-review__main--grid {
/* 9152  */         border-right: 2px solid rgba(243, 112, 35, 0.1);
/* 9153  */         padding: 30px 15px;
/* 9154  */     }
/* 9155  */     .contact-review__main--grid:nth-child(3n), .contact-review__main--grid:last-child {
/* 9156  */         border-right: 0;
/* 9157  */     }
/* 9158  */     .contact-review__main--grid:last-child, .contact-review__main--grid:nth-last-child(2) {
/* 9159  */         border-bottom: 0;
/* 9160  */     }
/* 9161  */ }
/* 9162  */ @media (min-width: 992px) {
/* 9163  */     .contact-review {
/* 9164  */         padding: 80px 0;
/* 9165  */     }
/* 9166  */     .contact-review__heading {
/* 9167  */         margin-bottom: 60px;
/* 9168  */     }
/* 9169  */     .contact-review__main--grid {
/* 9170  */         padding: 40px 15px;
/* 9171  */     }
/* 9172  */ }
/* 9173  */ @media (min-width: 1200px) {
/* 9174  */     .contact-review {
/* 9175  */         padding: 100px 0;
/* 9176  */     }
/* 9177  */     .contact-review__heading {
/* 9178  */         margin-bottom: 75px;
/* 9179  */     }
/* 9180  */ }
/* 9181  */ @media (min-width: 1441px) {
/* 9182  */     .contact-review {
/* 9183  */         padding: 120px 0;
/* 9184  */     }
/* 9185  */     .contact-review__heading {
/* 9186  */         margin-bottom: 90px;
/* 9187  */     }
/* 9188  */ }
/* 9189  */ .unifying-vision {
/* 9190  */     padding: 40px 0;
/* 9191  */ }
/* 9192  */ .unifying-vision__heading {
/* 9193  */     max-width: 1080px;
/* 9194  */     width: 100%;
/* 9195  */     margin: 0 auto 30px;
/* 9196  */ }
/* 9197  */ .unifying-vision__heading p,
/* 9198  */ .unifying-vision__main--inner p {
/* 9199  */     margin: 0;
/* 9200  */ }

/* app.css */

/* 9201  */ .unifying-vision__main--inner {
/* 9202  */     padding-left: 32px;
/* 9203  */     position: relative;
/* 9204  */     max-width: 390px;
/* 9205  */     width: 100%;
/* 9206  */ }
/* 9207  */ .unifying-vision__main--inner:before {
/* 9208  */     content: "";
/* 9209  */     position: absolute;
/* 9210  */     width: 8px;
/* 9211  */     height: 100%;
/* 9212  */     left: 0;
/* 9213  */     background: var(--orange);
/* 9214  */ }
/* 9215  */ .unifying-vision__main--grid {
/* 9216  */     display: flex;
/* 9217  */     margin: 0 0 30px;
/* 9218  */ }
/* 9219  */ .unifying-vision__main--grid:last-child {
/* 9220  */     margin: 0;
/* 9221  */ }
/* 9222  */ .unifying-vision__main--inner h3 {
/* 9223  */     color: var(--black);
/* 9224  */     text-transform: capitalize;
/* 9225  */ }
/* 9226  */
/* 9227  */ @media (min-width: 576px) {
/* 9228  */
/* 9229  */     .unifying-vision__main--grid:last-child,
/* 9230  */     .unifying-vision__main--grid:nth-last-child(2) {
/* 9231  */         margin: 0;
/* 9232  */     }
/* 9233  */ }
/* 9234  */
/* 9235  */ @media (min-width: 768px) {
/* 9236  */     .unifying-vision {
/* 9237  */         padding: 60px 0;
/* 9238  */     }
/* 9239  */     .unifying-vision__heading {
/* 9240  */         margin: 0 auto 45px;
/* 9241  */     }
/* 9242  */     .unifying-vision__main--grid {
/* 9243  */         margin: 0 0 45px;
/* 9244  */     }
/* 9245  */ }
/* 9246  */ @media (min-width: 992px) {
/* 9247  */     .unifying-vision {
/* 9248  */         padding: 80px 0;
/* 9249  */     }
/* 9250  */     .unifying-vision__heading {

/* app.css */

/* 9251  */         margin: 0 auto 60px;
/* 9252  */     }
/* 9253  */     .unifying-vision__main--grid {
/* 9254  */         margin: 0 0 60px;
/* 9255  */     }
/* 9256  */     .unifying-vision__main--grid:last-child,
/* 9257  */     .unifying-vision__main--grid:nth-last-child(2),
/* 9258  */     .unifying-vision__main--grid:nth-last-child(3) {
/* 9259  */         margin: 0;
/* 9260  */     }
/* 9261  */ }
/* 9262  */ @media (min-width: 1200px) {
/* 9263  */     .unifying-vision {
/* 9264  */         padding: 100px 0;
/* 9265  */     }
/* 9266  */     .unifying-vision__heading {
/* 9267  */         margin: 0 auto 75px;
/* 9268  */     }
/* 9269  */     .unifying-vision__main--grid {
/* 9270  */         margin: 0 0 75px;
/* 9271  */     }
/* 9272  */ }
/* 9273  */ @media (min-width: 1440px) {
/* 9274  */     .unifying-vision {
/* 9275  */         padding: 120px 0;
/* 9276  */     }
/* 9277  */     .unifying-vision__heading {
/* 9278  */         margin: 0 auto 90px;
/* 9279  */     }
/* 9280  */     .unifying-vision__main--grid {
/* 9281  */         margin: 0 0 90px;
/* 9282  */     }
/* 9283  */ }
/* 9284  */ .visionaries {
/* 9285  */     background: var(--black);
/* 9286  */     padding: 40px 0;
/* 9287  */ }
/* 9288  */ .visionaries__heading {
/* 9289  */     max-width: 985px;
/* 9290  */     width: 100%;
/* 9291  */     margin: 0 auto 30px;
/* 9292  */ }
/* 9293  */ .visionaries__heading h2 {
/* 9294  */     color: var(--white);
/* 9295  */ }
/* 9296  */ .visionaries__heading p {
/* 9297  */     margin: 0;
/* 9298  */     color: var(--white);
/* 9299  */ }
/* 9300  */ .visionaries__main--inner-img img {

/* app.css */

/* 9301  */     width: 100%;
/* 9302  */ }
/* 9303  */ .visionaries__main--inner {
/* 9304  */     position: relative;
/* 9305  */     border: 2px solid var(--white);
/* 9306  */ }
/* 9307  */ .visionaries__main--inner-img {
/* 9308  */     position: relative;
/* 9309  */ }
/* 9310  */ .visionaries__main--inner-cont {
/* 9311  */     position: absolute;
/* 9312  */     bottom: 0;
/* 9313  */     width: 100%;
/* 9314  */     padding: 0 30px 30px;
/* 9315  */ }
/* 9316  */ .visionaries__main--inner-img:before {
/* 9317  */     content: "";
/* 9318  */     position: absolute;
/* 9319  */     width: 100%;
/* 9320  */     height: 100%;
/* 9321  */     left: 0;
/* 9322  */     top: 0;
/* 9323  */     background: linear-gradient(180deg, rgba(0, 0, 0, 0) 49.6%, #000000 100%);
/* 9324  */ }
/* 9325  */ .visionaries__main--inner-cont h3 {
/* 9326  */     margin: 0 0 12px;
/* 9327  */ }
/* 9328  */ .visionaries__main--inner-cont p {
/* 9329  */     font-size: 17px;
/* 9330  */     line-height: 26px;
/* 9331  */     margin: 0;
/* 9332  */     color: var(--orange);
/* 9333  */ }
/* 9334  */ .visionaries__main--grid {
/* 9335  */     margin: 0 0 30px;
/* 9336  */ }
/* 9337  */ .visionaries__main--grid:last-child {
/* 9338  */     margin: 0;
/* 9339  */ }
/* 9340  */ /* .visionaries__main--grid:last-child .visionaries__main--inner {
/* 9341  *|     border: 0;
/* 9342  *| } */
/* 9343  */ .visionaries__main--inner:before {
/* 9344  */     content: "";
/* 9345  */     position: absolute;
/* 9346  */     top: 0;
/* 9347  */     right: 0;
/* 9348  */     width: 0;
/* 9349  */     height: 0;
/* 9350  */     border-style: solid;

/* app.css */

/* 9351  */     border-width: 0 66px 66px 0;
/* 9352  */     border-color: transparent #fff transparent transparent;
/* 9353  */     transition: all 500ms linear;
/* 9354  */     z-index: 1;
/* 9355  */ }
/* 9356  */ /* .visionaries__main--grid:last-child .visionaries__main--inner:before {
/* 9357  *|     display: none;
/* 9358  *| }
/* 9359  *| .visionaries__main--grid:last-child .visionaries__main--inner p {
/* 9360  *|     color: var(--white);
/* 9361  *|     margin: 0;
/* 9362  *| } */
/* 9363  */ /* .visionaries__main--grid:last-child .visionaries__main--inner h3 {
/* 9364  *|     margin: 0 0 20px;
/* 9365  *| } */
/* 9366  */ .visionaries__main--inner-quote {
/* 9367  */     width: 60px;
/* 9368  */     margin: 0 0 30px;
/* 9369  */ }
/* 9370  */
/* 9371  */ @media (min-width: 768px) {
/* 9372  */     .visionaries {
/* 9373  */         padding: 60px 0;
/* 9374  */     }
/* 9375  */     .visionaries__heading {
/* 9376  */         margin: 0 auto 45px;
/* 9377  */     }
/* 9378  */ }
/* 9379  */ @media (min-width: 992px) {
/* 9380  */     .visionaries {
/* 9381  */         padding: 80px 0;
/* 9382  */     }
/* 9383  */     .visionaries__heading {
/* 9384  */         margin: 0 auto 60px;
/* 9385  */     }
/* 9386  */     .visionaries__main--grid {
/* 9387  */         margin: 0;
/* 9388  */     }
/* 9389  */ }
/* 9390  */ @media (min-width: 1200px) {
/* 9391  */     .visionaries {
/* 9392  */         padding: 100px 0;
/* 9393  */     }
/* 9394  */     .visionaries__heading {
/* 9395  */         margin: 0 auto 75px;
/* 9396  */     }
/* 9397  */ }
/* 9398  */ @media (min-width: 1440px) {
/* 9399  */     .visionaries {
/* 9400  */         padding: 120px 0;

/* app.css */

/* 9401  */     }
/* 9402  */     .visionaries__heading {
/* 9403  */         margin: 0 auto 90px;
/* 9404  */     }
/* 9405  */ }
/* 9406  */ .meet-our-team {
/* 9407  */     padding: 40px 0;
/* 9408  */ }
/* 9409  */ .meet-our-team__heading {
/* 9410  */     max-width: 1075px;
/* 9411  */     width: 100%;
/* 9412  */     margin: 0 auto 70px;
/* 9413  */ }
/* 9414  */ .meet-our-team__heading p {
/* 9415  */     margin: 0;
/* 9416  */ }
/* 9417  */ .meet-our-team__main {
/* 9418  */     display: flex;
/* 9419  */     flex-wrap: wrap;
/* 9420  */     justify-content: center;
/* 9421  */ }
/* 9422  */ .meet-our-team__main--inner {
/* 9423  */     max-width: calc((100% / 2) - 20px);
/* 9424  */     width: 100%;
/* 9425  */     margin: 20px 10px;
/* 9426  */ }
/* 9427  */ .meet-our-team__main--inner-img img {
/* 9428  */     width: 100%;
/* 9429  */ }
/* 9430  */ .meet-our-team__main--inner-img {
/* 9431  */     box-shadow: 0px 0px 15px 0px rgba(243, 112, 35, 0.1);
/* 9432  */     background: linear-gradient(245.24deg, rgba(255, 0, 0, 0.05) 0%, rgba(247, 141, 30, 0.05) 100%);
/* 9433  */     position: relative;
/* 9434  */     margin: 0 0 16px;
/* 9435  */ }
/* 9436  */ .meet-our-team__main--inner-img:before {
/* 9437  */     content: "";
/* 9438  */     position: absolute;
/* 9439  */     background: url("/wp-content/themes/brainstream/images/case-icon.svg");
/* 9440  */     width: 90px;
/* 9441  */     height: 90px;
/* 9442  */     right: 16px;
/* 9443  */     top: 16px;
/* 9444  */     z-index: -1;
/* 9445  */     background-repeat: no-repeat;
/* 9446  */     background-size: cover;
/* 9447  */ }
/* 9448  */ .meet-our-team__main--inner-cont {
/* 9449  */     text-align: center;
/* 9450  */ }

/* app.css */

/* 9451  */ .meet-our-team__main--inner-cont p {
/* 9452  */     font-size: 14px;
/* 9453  */     line-height: 22px;
/* 9454  */     margin: 0;
/* 9455  */ }
/* 9456  */
/* 9457  */ @media (min-width: 576px) {
/* 9458  */     .meet-our-team__main--inner {
/* 9459  */         max-width: calc((100% / 3) - 20px);
/* 9460  */         width: 100%;
/* 9461  */         margin: 20px 10px;
/* 9462  */     }
/* 9463  */ }
/* 9464  */
/* 9465  */ @media (min-width: 768px) {
/* 9466  */     .meet-our-team {
/* 9467  */         padding: 60px 0;
/* 9468  */     }
/* 9469  */     .meet-our-team__main--inner {
/* 9470  */         max-width: calc((100% / 4) - 20px);
/* 9471  */         margin: 20px 10px;
/* 9472  */     }
/* 9473  */     .meet-our-team__main--inner-cont p {
/* 9474  */         font-size: 15px;
/* 9475  */         line-height: 23px;
/* 9476  */     }
/* 9477  */ }
/* 9478  */ @media (min-width: 992px) {
/* 9479  */     .meet-our-team {
/* 9480  */         padding: 80px 0;
/* 9481  */     }
/* 9482  */     .meet-our-team__main--inner {
/* 9483  */         max-width: calc((100% / 5) - 20px);
/* 9484  */         margin: 20px 10px;
/* 9485  */     }
/* 9486  */     .meet-our-team__main--inner-cont p {
/* 9487  */         font-size: 16px;
/* 9488  */         line-height: 24px;
/* 9489  */     }
/* 9490  */ }
/* 9491  */ @media (min-width: 1200px) {
/* 9492  */     .meet-our-team {
/* 9493  */         padding: 100px 0;
/* 9494  */     }
/* 9495  */     .meet-our-team__main--inner {
/* 9496  */         max-width: calc((100% / 6) - 20px);
/* 9497  */         margin: 20px 10px;
/* 9498  */     }
/* 9499  */ }
/* 9500  */ @media (min-width: 1440px) {

/* app.css */

/* 9501  */     .meet-our-team {
/* 9502  */         padding: 120px 0;
/* 9503  */     }
/* 9504  */     .meet-our-team__main--inner {
/* 9505  */         max-width: calc((100% / 7) - 20px);
/* 9506  */         margin: 20px 10px;
/* 9507  */     }
/* 9508  */ }
/* 9509  */ .content-with-back {
/* 9510  */     position: relative;
/* 9511  */ }
/* 9512  */
/* 9513  */ .content-with-back__bg_image {
/* 9514  */     position: absolute;
/* 9515  */     width: 100%;
/* 9516  */     height: 100%;
/* 9517  */     left: 0;
/* 9518  */     top: 0;
/* 9519  */     object-fit: cover;
/* 9520  */ }
/* 9521  */
/* 9522  */ .content-with-back.img_remove .content-with-back__bg_image {
/* 9523  */     display: none;
/* 9524  */ }
/* 9525  */
/* 9526  */ .content-with-back__cont {
/* 9527  */     text-align: center;
/* 9528  */ }
/* 9529  */
/* 9530  */ .content-with-back__container {
/* 9531  */     padding: 30px 15px;
/* 9532  */ }
/* 9533  */
/* 9534  */ .content-with-back__img--inner img {
/* 9535  */     width: 100%;
/* 9536  */     height: 100%;
/* 9537  */ }
/* 9538  */
/* 9539  */ .content-with-back__cont p {
/* 9540  */     margin: 0 0 23px;
/* 9541  */
/* 9542  */ }
/* 9543  */
/* 9544  */ .content-with-back__cont--list {
/* 9545  */     display: flex;
/* 9546  */     gap: 20px;
/* 9547  */     margin: 20px 0;
/* 9548  */     flex-wrap: wrap;
/* 9549  */     justify-content: center;
/* 9550  */

/* app.css */

/* 9551  */ }
/* 9552  */
/* 9553  */ .content-with-back.color-bg .content-with-back__cont h2,
/* 9554  */ .content-with-back.color-bg .content-with-back__cont p {
/* 9555  */     color: var(--white);
/* 9556  */ }
/* 9557  */
/* 9558  */ .content-with-back__bg {
/* 9559  */     height: 100%;
/* 9560  */     top: 50%;
/* 9561  */     transform: translateY(-50%);
/* 9562  */     position: absolute;
/* 9563  */     left: 50%;
/* 9564  */     z-index: 0;
/* 9565  */     width: 100vw;
/* 9566  */     display: none;
/* 9567  */     z-index: 0;
/* 9568  */ }
/* 9569  */
/* 9570  */ .content-with-back__main img {
/* 9571  */     width: 100%;
/* 9572  */     position: relative;
/* 9573  */     z-index: 1;
/* 9574  */ }
/* 9575  */
/* 9576  */ @media (min-width: 768px) {
/* 9577  */     .content-with-back__container {
/* 9578  */         padding: 45px 15px;
/* 9579  */     }
/* 9580  */
/* 9581  */     .content-with-back__cont p {
/* 9582  */         margin: 0 0 30px;
/* 9583  */     }
/* 9584  */
/* 9585  */     .content-with-back__img--inner {
/* 9586  */         position: absolute;
/* 9587  */         width: 50vw;
/* 9588  */         left: 0;
/* 9589  */         height: 100%;
/* 9590  */     }
/* 9591  */
/* 9592  */     .content-with-back__img {
/* 9593  */         min-height: 300px;
/* 9594  */     }
/* 9595  */
/* 9596  */     .content-with-back__cont--list {
/* 9597  */         gap: 30px;
/* 9598  */         margin: 30px 0 0;
/* 9599  */         justify-content: start;
/* 9600  */     }

/* app.css */

/* 9601  */
/* 9602  */     .content-with-back__bg {
/* 9603  */         display: block;
/* 9604  */     }
/* 9605  */
/* 9606  */     .content-with-back__main img {
/* 9607  */         margin: 30px 0;
/* 9608  */     }
/* 9609  */
/* 9610  */     .content-with-back__cont {
/* 9611  */         text-align: start;
/* 9612  */     }
/* 9613  */
/* 9614  */     .content-with-back.img_remove .content-with-back__bg_image {
/* 9615  */         display: block;
/* 9616  */     }
/* 9617  */
/* 9618  */
/* 9619  */ }
/* 9620  */
/* 9621  */ @media (min-width: 992px) {
/* 9622  */     .content-with-back__container {
/* 9623  */         padding: 60px 15px;
/* 9624  */     }
/* 9625  */
/* 9626  */     .content-with-back__cont p {
/* 9627  */         margin: 0 0 37px;
/* 9628  */     }
/* 9629  */
/* 9630  */     .content-with-back__img {
/* 9631  */         min-height: 400px;
/* 9632  */     }
/* 9633  */
/* 9634  */     .content-with-back__cont--list {
/* 9635  */         gap: 40px;
/* 9636  */         margin: 40px 0 0;
/* 9637  */     }
/* 9638  */
/* 9639  */     .content-with-back__main img {
/* 9640  */         margin: 60px 0;
/* 9641  */     }
/* 9642  */ }
/* 9643  */
/* 9644  */ @media (min-width: 1200px) {
/* 9645  */     .content-with-back__container {
/* 9646  */         padding: 75px 15px;
/* 9647  */     }
/* 9648  */
/* 9649  */     .content-with-back__cont p {
/* 9650  */         margin: 0 0 45px;

/* app.css */

/* 9651  */     }
/* 9652  */
/* 9653  */     .content-with-back__img {
/* 9654  */         min-height: 500px;
/* 9655  */     }
/* 9656  */ }
/* 9657  */
/* 9658  */ @media (min-width: 1440px) {
/* 9659  */     .content-with-back__container {
/* 9660  */         padding: 90px 15px;
/* 9661  */     }
/* 9662  */
/* 9663  */     .content-with-back__cont p {
/* 9664  */         margin: 0 0 50px;
/* 9665  */     }
/* 9666  */
/* 9667  */     .content-with-back__img {
/* 9668  */         min-height: 570px;
/* 9669  */     }
/* 9670  */ }
/* 9671  */ .certification {
/* 9672  */     padding: 40px 0;
/* 9673  */ }
/* 9674  */ .certification__heading {
/* 9675  */     max-width: 1080px;
/* 9676  */     width: 100%;
/* 9677  */     margin: 0 auto 30px;
/* 9678  */ }
/* 9679  */ .certification__heading p {
/* 9680  */     margin: 0;
/* 9681  */ }
/* 9682  */ .certification__main--inner {
/* 9683  */     position: relative;
/* 9684  */     padding: 20px 0;
/* 9685  */     border: 2px solid rgba(243, 112, 35, 1);
/* 9686  */     box-shadow: 0px 0px 10px 0px rgba(243, 112, 35, 0.1);
/* 9687  */ }
/* 9688  */ .certification__main--inner-img {
/* 9689  */     width: 155px;
/* 9690  */     height: 155px;
/* 9691  */     margin: 0 auto;
/* 9692  */ }
/* 9693  */ .certification__main--grid {
/* 9694  */     margin: 15px 0;
/* 9695  */ }
/* 9696  */ .certification__main--inner:before {
/* 9697  */     content: "";
/* 9698  */     position: absolute;
/* 9699  */     top: 0;
/* 9700  */     right: 0;

/* app.css */

/* 9701  */     width: 0;
/* 9702  */     height: 0;
/* 9703  */     border-style: solid;
/* 9704  */     border-width: 0 66px 66px 0;
/* 9705  */     border-color: transparent #F37023 transparent transparent;
/* 9706  */     transition: all 500ms linear;
/* 9707  */ }
/* 9708  */
/* 9709  */ @media (min-width: 768px) {
/* 9710  */     .certification {
/* 9711  */         padding: 60px 0;
/* 9712  */     }
/* 9713  */     .certification__heading {
/* 9714  */         margin: 0 auto 45px;
/* 9715  */     }
/* 9716  */     .certification__main--inner {
/* 9717  */         padding: 30px 0;
/* 9718  */     }
/* 9719  */     .certification__main--inner-img {
/* 9720  */         width: 175px;
/* 9721  */         height: 175px;
/* 9722  */     }
/* 9723  */ }
/* 9724  */ @media (min-width: 992px) {
/* 9725  */     .certification {
/* 9726  */         padding: 80px 0;
/* 9727  */     }
/* 9728  */     .certification__heading {
/* 9729  */         margin: 0 auto 60px;
/* 9730  */     }
/* 9731  */     .certification__main--inner {
/* 9732  */         padding: 40px 0;
/* 9733  */     }
/* 9734  */     .certification__main--inner-img {
/* 9735  */         width: 200px;
/* 9736  */         height: 200px;
/* 9737  */     }
/* 9738  */ }
/* 9739  */ @media (min-width: 1200px) {
/* 9740  */     .certification {
/* 9741  */         padding: 100px 0;
/* 9742  */     }
/* 9743  */     .certification__heading {
/* 9744  */         margin: 0 auto 75px;
/* 9745  */     }
/* 9746  */     .certification__main--inner {
/* 9747  */         padding: 50px 0;
/* 9748  */     }
/* 9749  */     .certification__main--inner-img {
/* 9750  */         width: 225px;

/* app.css */

/* 9751  */         height: 225px;
/* 9752  */     }
/* 9753  */ }
/* 9754  */ @media (min-width: 1440px) {
/* 9755  */     .certification {
/* 9756  */         padding: 120px 0;
/* 9757  */     }
/* 9758  */     .certification__heading {
/* 9759  */         margin: 0 auto 90px;
/* 9760  */     }
/* 9761  */     .certification__main--inner {
/* 9762  */         padding: 30px 0;
/* 9763  */     }
/* 9764  */ }
/* 9765  */ @media (min-width: 1600px) {
/* 9766  */     .certification__main--inner {
/* 9767  */         padding: 60px 0;
/* 9768  */     }
/* 9769  */ }
/* 9770  */ .belong-thrives {
/* 9771  */     padding: 40px 0;
/* 9772  */ }
/* 9773  */ .belong-thrives__heading {
/* 9774  */     max-width: 1290px;
/* 9775  */     width: 100%;
/* 9776  */     margin: 0 auto 30px;
/* 9777  */ }
/* 9778  */ .belong-thrives__heading p {
/* 9779  */     margin: 0;
/* 9780  */ }
/* 9781  */
/* 9782  */ @media (min-width: 768px) {
/* 9783  */     .belong-thrives {
/* 9784  */         padding: 60px 0;
/* 9785  */     }
/* 9786  */     .belong-thrives__heading {
/* 9787  */         margin: 0 auto 45px;
/* 9788  */     }
/* 9789  */ }
/* 9790  */ @media (min-width: 992px) {
/* 9791  */     .belong-thrives {
/* 9792  */         padding: 80px 0;
/* 9793  */     }
/* 9794  */     .belong-thrives__heading {
/* 9795  */         margin: 0 auto 60px;
/* 9796  */     }
/* 9797  */ }
/* 9798  */ @media (min-width: 1200px) {
/* 9799  */     .belong-thrives {
/* 9800  */         padding: 100px 0;

/* app.css */

/* 9801  */     }
/* 9802  */     .belong-thrives__heading {
/* 9803  */         margin: 0 auto 75px;
/* 9804  */     }
/* 9805  */ }
/* 9806  */ @media (min-width: 1440px) {
/* 9807  */     .belong-thrives {
/* 9808  */         padding: 120px 0;
/* 9809  */     }
/* 9810  */     .belong-thrives__heading {
/* 9811  */         margin: 0 auto 90px;
/* 9812  */     }
/* 9813  */ }
/* 9814  */ .our-strength {
/* 9815  */     position: relative;
/* 9816  */ }
/* 9817  */ .our-strength__img img {
/* 9818  */     width: 100%;
/* 9819  */     height: 100%;
/* 9820  */ }
/* 9821  */ .our-strength__box {
/* 9822  */     padding: 40px 0;
/* 9823  */     background: var(--black);
/* 9824  */ }
/* 9825  */ .our-strength__box--paragraph,
/* 9826  */ .our-strength__box--heading {
/* 9827  */     max-width: 895px;
/* 9828  */     width: 100%;
/* 9829  */ }
/* 9830  */ .our-strength__box--heading{
/* 9831  */     margin: 0 auto 0;
/* 9832  */ }
/* 9833  */ .our-strength__box--paragraph{
/* 9834  */     margin: 0 auto 30px;
/* 9835  */ }
/* 9836  */ .our-strength__box--heading h2 {
/* 9837  */     color: var(--white);
/* 9838  */ }
/* 9839  */ .our-strength__box--paragraph p {
/* 9840  */     margin: 0;
/* 9841  */     color: var(--white);
/* 9842  */ }
/* 9843  */ .our-strength__box--inner {
/* 9844  */     padding: 15px;
/* 9845  */     background: rgba(196, 241, 254, 1);
/* 9846  */ }
/* 9847  */ .our-strength__box--grid {
/* 9848  */     display: flex;
/* 9849  */     margin: 15px 0;
/* 9850  */ }

/* app.css */

/* 9851  */ .our-strength__box--inner h3 {
/* 9852  */     color: var(--black);
/* 9853  */     margin: 0 0 12px;
/* 9854  */ }
/* 9855  */ .our-strength__box--inner p {
/* 9856  */     font-size: 14px;
/* 9857  */     line-height: 22px;
/* 9858  */     margin: 0;
/* 9859  */ }
/* 9860  */ .our-strength__box--grid:nth-of-type(2) .our-strength__box--inner {
/* 9861  */     background: rgba(215, 229, 255, 1);
/* 9862  */ }
/* 9863  */ .our-strength__box--grid:nth-of-type(3) .our-strength__box--inner {
/* 9864  */     background: rgba(148, 231, 203, 1);
/* 9865  */ }
/* 9866  */ .our-strength__box--grid:nth-of-type(4) .our-strength__box--inner {
/* 9867  */     background: rgba(255, 219, 172, 1);
/* 9868  */ }
/* 9869  */ .our-strength__box--grid:nth-of-type(5) .our-strength__box--inner {
/* 9870  */     background: rgba(255, 207, 222, 1);
/* 9871  */ }
/* 9872  */ .our-strength__box--grid:nth-of-type(6) .our-strength__box--inner {
/* 9873  */     background: rgba(220, 215, 255, 1);
/* 9874  */ }
/* 9875  */
/* 9876  */
/* 9877  */
/* 9878  */ @media (min-width: 768px) {
/* 9879  */     .our-strength__box {
/* 9880  */         padding: 60px 0;
/* 9881  */     }
/* 9882  */     .our-strength__box--paragraph {
/* 9883  */         margin: 0 auto 45px;
/* 9884  */     }
/* 9885  */     .our-strength__box--inner {
/* 9886  */         padding: 25px;
/* 9887  */     }
/* 9888  */     .our-strength__box--inner p {
/* 9889  */         font-size: 16px;
/* 9890  */         line-height: 24px;
/* 9891  */     }
/* 9892  */ }
/* 9893  */ @media (min-width: 992px) {
/* 9894  */     .our-strength__box {
/* 9895  */         padding: 80px 0;
/* 9896  */     }
/* 9897  */     .our-strength__box--paragraph {
/* 9898  */         margin: 0 auto 60px;
/* 9899  */     }
/* 9900  */     .our-strength__box--inner {

/* app.css */

/* 9901  */         padding: 30px;
/* 9902  */     }
/* 9903  */     .our-strength__box--inner p {
/* 9904  */         font-size: 18px;
/* 9905  */         line-height: 26px;
/* 9906  */     }
/* 9907  */ }
/* 9908  */ @media (min-width: 1200px) {
/* 9909  */     .our-strength__box {
/* 9910  */         padding: 100px 0;
/* 9911  */     }
/* 9912  */     .our-strength__box--paragraph {
/* 9913  */         margin: 0 auto 75px;
/* 9914  */     }
/* 9915  */     .our-strength__box--inner {
/* 9916  */         padding: 35px;
/* 9917  */     }
/* 9918  */ }
/* 9919  */ @media (min-width: 1440px) {
/* 9920  */     .our-strength__box {
/* 9921  */         padding: 120px 0;
/* 9922  */     }
/* 9923  */     .our-strength__box--paragraph {
/* 9924  */         margin: 0 auto 90px;
/* 9925  */     }
/* 9926  */     .our-strength__box--inner {
/* 9927  */         padding: 40px;
/* 9928  */     }
/* 9929  */ }
/* 9930  */ .employe-experience {
/* 9931  */     padding: 40px 0;
/* 9932  */ }
/* 9933  */ .employe-experience__heading {
/* 9934  */     max-width: 1290px;
/* 9935  */     width: 100%;
/* 9936  */     margin: 0 auto 30px;
/* 9937  */ }
/* 9938  */ .employe-experience__main--item {
/* 9939  */     margin-right: 20px;
/* 9940  */ }
/* 9941  */ .employe-experience__main--item-img img {
/* 9942  */     width: 100%;
/* 9943  */ }
/* 9944  */ .employe-experience__main--item-cont {
/* 9945  */     display: block;
/* 9946  */     padding: 15px;
/* 9947  */ }
/* 9948  */ .employe-experience__main--item-cont-auth {
/* 9949  */     margin: 0 0 20px;
/* 9950  */ }

/* app.css */

/* 9951  */ .employe-experience__main--item-cont .employe-experience__main--item-cont-auth p {
/* 9952  */     font-size: 14px;
/* 9953  */     line-height: 22px;
/* 9954  */     margin: 0;
/* 9955  */ }
/* 9956  */ .employe-experience__main--item-cont.mfp-hide .employe-experience__main--item-content {
/* 9957  */     font-size: 14px;
/* 9958  */     line-height: 22px;
/* 9959  */     margin: 0;
/* 9960  */     display: -webkit-box;
/* 9961  */     -webkit-line-clamp: 3; /* Limits to 3 lines */
/* 9962  */     -webkit-box-orient: vertical;
/* 9963  */     overflow: hidden;
/* 9964  */     text-overflow: ellipsis;
/* 9965  */     max-width: 100%;
/* 9966  */     max-height: 75px;;
/* 9967  */ }
/* 9968  */ .employe-experience__main .slick-dots {
/* 9969  */     display: flex;
/* 9970  */     justify-content: center;
/* 9971  */     margin: 60px auto 0;
/* 9972  */     position: relative;
/* 9973  */     width: max-content;
/* 9974  */ }
/* 9975  */ .employe-experience__main .slick-dots li {
/* 9976  */     font-size: 0;
/* 9977  */     line-height: 0;
/* 9978  */     margin: 0;
/* 9979  */ }
/* 9980  */ .employe-experience__main .slick-dots li button {
/* 9981  */     width: 25px;
/* 9982  */     height: 4px;
/* 9983  */ }
/* 9984  */ .employe-experience__main .slick-dots:before {
/* 9985  */     content: "";
/* 9986  */     position: absolute;
/* 9987  */     width: 100%;
/* 9988  */     background: rgba(0, 0, 0, 0.4);
/* 9989  */     height: 2px;
/* 9990  */     bottom: -1px;
/* 9991  */ }
/* 9992  */ .employe-experience__main .slick-dots li.slick-active {
/* 9993  */     background: #000;
/* 9994  */ }
/* 9995  */ .employe-experience__main .employe-experience__main--item {
/* 9996  */     height: initial;
/* 9997  */     background: linear-gradient(245.24deg, rgba(255, 0, 0, 0.05) 0%, rgba(247, 141, 30, 0.05) 100%);
/* 9998  */     height: 100%;
/* 9999  */ }
/* 10000 */ .employe-experience__main .slick-track {

/* app.css */

/* 10001 */     display: flex;
/* 10002 */ }
/* 10003 */ .employe-experience__main .popup_employee_wrapper{
/* 10004 */     text-align: end;
/* 10005 */     padding: 15px;
/* 10006 */     display: none;
/* 10007 */ }
/* 10008 */ .employe-experience__main .popup_employee{
/* 10009 */     color: var(--orange);
/* 10010 */     font-weight: 600;
/* 10011 */ }
/* 10012 */
/* 10013 */ .employe-experience__main--item-cont.mfp-hide{
/* 10014 */     display: block !important;
/* 10015 */ }
/* 10016 */ .mfp-content .employe-experience__main--item-cont{
/* 10017 */     background: #fff;
/* 10018 */     max-width: 1440px;
/* 10019 */     margin: 0 auto;
/* 10020 */     width: 90%;
/* 10021 */     position: relative;
/* 10022 */ }
/* 10023 */
/* 10024 */ @media (min-width: 768px) {
/* 10025 */     .employe-experience {
/* 10026 */         padding: 60px 0;
/* 10027 */     }
/* 10028 */     .employe-experience__heading {
/* 10029 */         margin: 0 auto 45px;
/* 10030 */     }
/* 10031 */     .employe-experience__main--item {
/* 10032 */         margin-right: 30px;
/* 10033 */     }
/* 10034 */     .employe-experience__main--item-cont {
/* 10035 */         padding: 20px;
/* 10036 */     }
/* 10037 */     .employe-experience__main .slick-dots li button {
/* 10038 */         width: 35px;
/* 10039 */     }
/* 10040 */     .employe-experience__main--item-cont .employe-experience__main--item-cont-auth p {
/* 10041 */         font-size: 15px;
/* 10042 */         line-height: 23px;
/* 10043 */     }
/* 10044 */     .employe-experience__main--item-cont p {
/* 10045 */         font-size: 16px;
/* 10046 */         line-height: 24px;
/* 10047 */     }
/* 10048 */ }
/* 10049 */ @media (min-width: 992px) {
/* 10050 */     .employe-experience {

/* app.css */

/* 10051 */         padding: 80px 0;
/* 10052 */     }
/* 10053 */     .employe-experience__heading {
/* 10054 */         margin: 0 auto 60px;
/* 10055 */     }
/* 10056 */     .employe-experience__main--item {
/* 10057 */         margin-right: 40px;
/* 10058 */     }
/* 10059 */     .employe-experience__main--item-cont {
/* 10060 */         padding: 25px;
/* 10061 */     }
/* 10062 */     .employe-experience__main .slick-dots li button {
/* 10063 */         width: 45px;
/* 10064 */     }
/* 10065 */     .employe-experience__main--item-cont .employe-experience__main--item-cont-auth p {
/* 10066 */         font-size: 16px;
/* 10067 */         line-height: 24px;
/* 10068 */     }
/* 10069 */     .employe-experience__main--item-cont p {
/* 10070 */         font-size: 18px;
/* 10071 */         line-height: 26px;
/* 10072 */     }
/* 10073 */ }
/* 10074 */ @media (min-width: 1200px) {
/* 10075 */     .employe-experience {
/* 10076 */         padding: 100px 0;
/* 10077 */     }
/* 10078 */     .employe-experience__heading {
/* 10079 */         margin: 0 auto 75px;
/* 10080 */     }
/* 10081 */     .employe-experience__main--item-cont {
/* 10082 */         padding: 30px;
/* 10083 */     }
/* 10084 */     .employe-experience__main .slick-dots li button {
/* 10085 */         width: 60px;
/* 10086 */     }
/* 10087 */ }
/* 10088 */ @media (min-width: 1440px) {
/* 10089 */     .employe-experience {
/* 10090 */         padding: 120px 0;
/* 10091 */     }
/* 10092 */     .employe-experience__heading {
/* 10093 */         margin: 0 auto 90px;
/* 10094 */     }
/* 10095 */     .employe-experience__main--item-cont-auth h4 {
/* 10096 */         font-size: 26px;
/* 10097 */         line-height: 31px;
/* 10098 */     }
/* 10099 */ }
/* 10100 */ .life-brainstream {

/* app.css */

/* 10101 */     padding: 40px 0 0;
/* 10102 */     background: var(--black);
/* 10103 */ }
/* 10104 */ .container.container__fluid {
/* 10105 */     max-width: 100%;
/* 10106 */     padding: 0;
/* 10107 */ }
/* 10108 */ .life-brainstream__main {
/* 10109 */     display: flex;
/* 10110 */     align-items: stretch;
/* 10111 */     flex-wrap: wrap;
/* 10112 */ }
/* 10113 */ .life-brainstream__main--item {
/* 10114 */     max-width: 100%;
/* 10115 */     width: 100%;
/* 10116 */     height: 100%;
/* 10117 */     position: relative;
/* 10118 */ }
/* 10119 */ .life-brainstream__main--item-img {
/* 10120 */     position: relative;
/* 10121 */ }
/* 10122 */ .life-brainstream__main--item-img img {
/* 10123 */     width: 100%;
/* 10124 */ }
/* 10125 */ .life-brainstream__main--item-cont {
/* 10126 */     position: absolute;
/* 10127 */     left: 50%;
/* 10128 */     top: 50%;
/* 10129 */     transform: translate(-50% , -50%);
/* 10130 */     z-index: 1;
/* 10131 */     max-width: 277px;
/* 10132 */     width: 100%;
/* 10133 */ }
/* 10134 */ .life-brainstream__main--item-cont h3 {
/* 10135 */     color: var(--black);
/* 10136 */     text-align: center;
/* 10137 */ }
/* 10138 */ .life-brainstream__heading {
/* 10139 */     width: 100%;
/* 10140 */     margin: 0 auto 90px;
/* 10141 */ }
/* 10142 */ .life-brainstream__heading h2 {
/* 10143 */     color: var(--white);
/* 10144 */     margin: 0 0 15px;
/* 10145 */ }
/* 10146 */ .life-brainstream__heading p {
/* 10147 */     color: var(--white);
/* 10148 */ }
/* 10149 */
/* 10150 */ @media (min-width: 576px) {

/* app.css */

/* 10151 */     .life-brainstream__main--item {
/* 10152 */         max-width: calc(100% / 2);
/* 10153 */     }
/* 10154 */ }
/* 10155 */ @media (min-width: 768px) {
/* 10156 */     .life-brainstream {
/* 10157 */         padding: 60px 0 0;
/* 10158 */     }
/* 10159 */     .life-brainstream__heading h2 {
/* 10160 */         margin: 0 0 20px;
/* 10161 */     }
/* 10162 */ }
/* 10163 */ @media (min-width: 992px) {
/* 10164 */     .life-brainstream {
/* 10165 */         padding: 80px 0 0;
/* 10166 */     }
/* 10167 */     .life-brainstream__main--item {
/* 10168 */         max-width: calc(100% / 3);
/* 10169 */     }
/* 10170 */     .life-brainstream__heading h2 {
/* 10171 */         margin: 0 0 25px;
/* 10172 */     }
/* 10173 */ }
/* 10174 */ @media (min-width: 1200px) {
/* 10175 */     .life-brainstream {
/* 10176 */         padding: 100px 0 0;
/* 10177 */     }
/* 10178 */     .life-brainstream__main--item {
/* 10179 */         max-width: calc(100% / 4);
/* 10180 */     }
/* 10181 */     .life-brainstream__heading h2 {
/* 10182 */         margin: 0 0 30px;
/* 10183 */     }
/* 10184 */ }
/* 10185 */ @media (min-width: 1440px) {
/* 10186 */     .life-brainstream {
/* 10187 */         padding: 120px 0 0;
/* 10188 */     }
/* 10189 */ }
/* 10190 */ .great-place {
/* 10191 */     padding: 40px 0;
/* 10192 */ }
/* 10193 */ .great-place__heading {
/* 10194 */     max-width: 1290px;
/* 10195 */     width: 100%;
/* 10196 */     margin: 0 auto 30px;
/* 10197 */ }
/* 10198 */ .great-place__main--item {
/* 10199 */     padding: 20px;
/* 10200 */     background: rgba(243, 112, 35, 0.05);

/* app.css */

/* 10201 */     margin-right: 20px;
/* 10202 */ }
/* 10203 */ .great-place__main--item h3 {
/* 10204 */     color: var(--black);
/* 10205 */     margin: 0 0 10px;
/* 10206 */ }
/* 10207 */ .great-place__main--item p {
/* 10208 */     margin: 0;
/* 10209 */ }
/* 10210 */ .great-place__main .slick-dots {
/* 10211 */     display: flex;
/* 10212 */     justify-content: center;
/* 10213 */     margin: 60px auto 0;
/* 10214 */     position: relative;
/* 10215 */     width: max-content;
/* 10216 */ }
/* 10217 */ .great-place__main .slick-dots li {
/* 10218 */     font-size: 0;
/* 10219 */     line-height: 0;
/* 10220 */     margin: 0;
/* 10221 */ }
/* 10222 */ .great-place__main .slick-dots li button {
/* 10223 */     width: 25px;
/* 10224 */     height: 4px;
/* 10225 */ }
/* 10226 */ .great-place__main .slick-dots:before {
/* 10227 */     content: "";
/* 10228 */     position: absolute;
/* 10229 */     width: 100%;
/* 10230 */     background: rgba(0, 0, 0, 0.4);
/* 10231 */     height: 2px;
/* 10232 */     bottom: -1px;
/* 10233 */ }
/* 10234 */ .great-place__main .slick-dots li.slick-active {
/* 10235 */     background: #000;
/* 10236 */ }
/* 10237 */ .great-place__main .great-place__main--item {
/* 10238 */     height: initial;
/* 10239 */     background: linear-gradient(245.24deg, rgba(255, 0, 0, 0.05) 0%, rgba(247, 141, 30, 0.05) 100%);
/* 10240 */ }
/* 10241 */ .great-place__main .slick-track {
/* 10242 */     display: flex;
/* 10243 */ }
/* 10244 */
/* 10245 */ @media (min-width: 768px) {
/* 10246 */     .great-place__main .slick-dots li button {
/* 10247 */         width: 35px;
/* 10248 */     }
/* 10249 */     .great-place {
/* 10250 */         padding: 60px 0;

/* app.css */

/* 10251 */     }
/* 10252 */     .great-place__heading {
/* 10253 */         margin: 0 auto 45px;
/* 10254 */     }
/* 10255 */     .great-place__main--item {
/* 10256 */         padding: 25px;
/* 10257 */         margin-right: 25px;
/* 10258 */     }
/* 10259 */ }
/* 10260 */ @media (min-width: 992px) {
/* 10261 */     .great-place__main .slick-dots li button {
/* 10262 */         width: 45px;
/* 10263 */     }
/* 10264 */     .great-place {
/* 10265 */         padding: 80px 0;
/* 10266 */     }
/* 10267 */     .great-place__heading {
/* 10268 */         margin: 0 auto 60px;
/* 10269 */     }
/* 10270 */     .great-place__main--item {
/* 10271 */         padding: 30px;
/* 10272 */         margin-right: 30px;
/* 10273 */     }
/* 10274 */ }
/* 10275 */ @media (min-width: 1200px) {
/* 10276 */     .great-place__main .slick-dots li button {
/* 10277 */         width: 60px;
/* 10278 */     }
/* 10279 */     .great-place {
/* 10280 */         padding: 100px 0;
/* 10281 */     }
/* 10282 */     .great-place__heading {
/* 10283 */         margin: 0 auto 75px;
/* 10284 */     }
/* 10285 */     .great-place__main--item {
/* 10286 */         padding: 35px;
/* 10287 */         margin-right: 35px;
/* 10288 */     }
/* 10289 */ }
/* 10290 */ @media (min-width: 1440px) {
/* 10291 */     .great-place {
/* 10292 */         padding: 120px 0;
/* 10293 */     }
/* 10294 */     .great-place__heading {
/* 10295 */         margin: 0 auto 90px;
/* 10296 */     }
/* 10297 */     .great-place__main--item p {
/* 10298 */         font-size: 24px;
/* 10299 */         line-height: 32px;
/* 10300 */     }

/* app.css */

/* 10301 */     .great-place__main--item {
/* 10302 */         padding: 40px;
/* 10303 */         margin-right: 40px;
/* 10304 */     }
/* 10305 */ }
/* 10306 */ .join-brainstream {
/* 10307 */     padding: 40px 0;
/* 10308 */     background: var(--black);
/* 10309 */ }
/* 10310 */ .join-brainstream__grid:first-child {
/* 10311 */     display: flex;
/* 10312 */     align-items: end;
/* 10313 */ }
/* 10314 */ .join-brainstream__heading {
/* 10315 */     max-width: 850px;
/* 10316 */     width: 100%;
/* 10317 */     margin: 0 auto 30px;
/* 10318 */ }
/* 10319 */ .join-brainstream__heading h2 {
/* 10320 */     color: var(--white);
/* 10321 */ }
/* 10322 */ .join-brainstream__heading p {
/* 10323 */     color: var(--white);
/* 10324 */     margin: 0;
/* 10325 */ }
/* 10326 */ .join-brainstream__main {
/* 10327 */     margin-bottom: 30px;
/* 10328 */ }
/* 10329 */ .join-brainstream__grid {
/* 10330 */     margin: 0 0 30px;
/* 10331 */ }
/* 10332 */ .join-brainstream__grid:last-child {
/* 10333 */     margin: 0;
/* 10334 */ }
/* 10335 */
/* 10336 */ @media (min-width: 768px) {
/* 10337 */     .join-brainstream {
/* 10338 */         padding: 60px 0;
/* 10339 */     }
/* 10340 */     .join-brainstream__heading {
/* 10341 */         margin: 0 auto 45px;
/* 10342 */     }
/* 10343 */     .join-brainstream__main {
/* 10344 */         margin-bottom: 45px;
/* 10345 */     }
/* 10346 */     .join-brainstream__grid {
/* 10347 */         margin: 0;
/* 10348 */     }
/* 10349 */ }
/* 10350 */ @media (min-width: 992px) {

/* app.css */

/* 10351 */     .join-brainstream {
/* 10352 */         padding: 80px 0;
/* 10353 */     }
/* 10354 */     .join-brainstream__heading {
/* 10355 */         margin: 0 auto 60px;
/* 10356 */     }
/* 10357 */     .join-brainstream__main {
/* 10358 */         margin-bottom: 60px;
/* 10359 */     }
/* 10360 */ }
/* 10361 */ @media (min-width: 1200px) {
/* 10362 */     .join-brainstream {
/* 10363 */         padding: 100px 0;
/* 10364 */     }
/* 10365 */     .join-brainstream__heading {
/* 10366 */         margin: 0 auto 75px;
/* 10367 */     }
/* 10368 */     .join-brainstream__main {
/* 10369 */         margin-bottom: 75px;
/* 10370 */     }
/* 10371 */ }
/* 10372 */ @media (min-width: 1440px) {
/* 10373 */     .join-brainstream {
/* 10374 */         padding: 120px 0;
/* 10375 */     }
/* 10376 */     .join-brainstream__heading {
/* 10377 */         margin: 0 auto 90px;
/* 10378 */     }
/* 10379 */     .join-brainstream__main {
/* 10380 */         margin-bottom: 90px;
/* 10381 */     }
/* 10382 */ }
/* 10383 */ .latest-blog {
/* 10384 */     padding: 40px 0;
/* 10385 */ }
/* 10386 */ .latest-blog__img {
/* 10387 */     position: relative;
/* 10388 */     overflow: hidden;
/* 10389 */     margin: 0 0 30px;
/* 10390 */ }
/* 10391 */ .latest-blog__img img {
/* 10392 */     width: 100%;
/* 10393 */     transition: all 500ms linear;
/* 10394 */ }
/* 10395 */ .latest-blog__cont h4 {
/* 10396 */     font-weight: 500;
/* 10397 */     color: var(--orange);
/* 10398 */     margin: 0 0 20px;
/* 10399 */ }
/* 10400 */ .latest-blog__cont h3 {

/* app.css */

/* 10401 */     color: var(--black);
/* 10402 */     margin: 0 0 20px;
/* 10403 */ }
/* 10404 */ .latest-blog__cont p {
/* 10405 */     font-size: 14px;
/* 10406 */     line-height: 24px;
/* 10407 */     margin: 0 0 22px;
/* 10408 */     overflow: hidden;
/* 10409 */     display: -webkit-box;
/* 10410 */     -webkit-line-clamp: 6;
/* 10411 */     -webkit-box-orient: vertical;
/* 10412 */ }
/* 10413 */ .latest-blog__cont--btn {
/* 10414 */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 10415 */ }
/* 10416 */ .latest-blog__cont--btn:hover {
/* 10417 */     box-shadow: 0px 0px 25px 0px rgba(243, 112, 35, 0.25);
/* 10418 */ }
/* 10419 */ .latest-blog__img:hover img {
/* 10420 */     transform: scale(1.1);
/* 10421 */     transition: 500ms linear;
/* 10422 */ }
/* 10423 */
/* 10424 */ @media (min-width: 768px) {
/* 10425 */     .latest-blog {
/* 10426 */         padding: 60px 0;
/* 10427 */     }
/* 10428 */     .latest-blog__cont p {
/* 10429 */         margin: 0 0 32px;
/* 10430 */         font-size: 16px;
/* 10431 */         line-height: 26px;
/* 10432 */     }
/* 10433 */ }
/* 10434 */ @media (min-width: 992px) {
/* 10435 */     .latest-blog {
/* 10436 */         padding: 80px 0;
/* 10437 */     }
/* 10438 */     .latest-blog__cont p {
/* 10439 */         margin: 0 0 42px;
/* 10440 */         font-size: 18px;
/* 10441 */         line-height: 28px;
/* 10442 */     }
/* 10443 */ }
/* 10444 */ @media (min-width: 1200px) {
/* 10445 */     .latest-blog {
/* 10446 */         padding: 100px 0;
/* 10447 */     }
/* 10448 */     .latest-blog__img {
/* 10449 */         margin: 0;
/* 10450 */     }

/* app.css */

/* 10451 */ }
/* 10452 */ @media (min-width: 1440px) {
/* 10453 */     .latest-blog {
/* 10454 */         padding: 120px 0;
/* 10455 */     }
/* 10456 */ }
/* 10457 */ .blog-list {
/* 10458 */     padding: 0 0 30px;
/* 10459 */ }
/* 10460 */ .blog-list__main--grid {
/* 10461 */     margin: 0 0 30px;
/* 10462 */ }
/* 10463 */ .blog-list__main--grid-img {
/* 10464 */     height: auto;
/* 10465 */     margin: 0 0 20px;
/* 10466 */     position: relative;
/* 10467 */ }
/* 10468 */ .blog-list__main--grid-img a {
/* 10469 */     display: block;
/* 10470 */     width: 100%;
/* 10471 */ /*     height: 290px; */
/* 10472 */ }
/* 10473 */ .blog-list__main--grid-img a img {
/* 10474 */     width: 100%;
/* 10475 */     height: 100%;
/* 10476 */     object-fit: cover;
/* 10477 */ }
/* 10478 */ .blog-list__main--grid-cont h6 {
/* 10479 */     line-height: 24px;
/* 10480 */     color: var(--orange);
/* 10481 */     font-weight: 500;
/* 10482 */     margin: 0 0 6px;
/* 10483 */ }
/* 10484 */ .blog-list__main--grid-cont p {
/* 10485 */     margin: 0;
/* 10486 */     font-size: 14px;
/* 10487 */     line-height: 24px;
/* 10488 */     color: rgba(0, 0, 0, 0.6);
/* 10489 */     overflow: hidden;
/* 10490 */     display: -webkit-box;
/* 10491 */     -webkit-line-clamp: 3;
/* 10492 */     -webkit-box-orient: vertical;
/* 10493 */ }
/* 10494 */ .blog-list__category {
/* 10495 */     background: rgba(243, 112, 35, 0.1);
/* 10496 */     padding: 20px;
/* 10497 */     margin: 0 0 40px;
/* 10498 */     display: none;
/* 10499 */ }
/* 10500 */ .blog-list__category select {

/* app.css */

/* 10501 */     width: 515px;
/* 10502 */     font-size: 14px;
/* 10503 */     line-height: 27px;
/* 10504 */     font-weight: 400;
/* 10505 */     padding: 10px 25px 10px 15px;
/* 10506 */     border: 0;
/* 10507 */     box-shadow: 0px 0px 10px 0px rgba(243, 112, 35, 0.1);
/* 10508 */ }
/* 10509 */
/* 10510 */ @media (min-width: 768px) {
/* 10511 */     .blog-list__main--grid {
/* 10512 */         margin: 0 0 45px;
/* 10513 */     }
/* 10514 */     .blog-list__main--grid-cont p {
/* 10515 */         font-size: 16px;
/* 10516 */         line-height: 26px;
/* 10517 */     }
/* 10518 */     .blog-list__category select {
/* 10519 */         font-size: 17px;
/* 10520 */         line-height: 30px;
/* 10521 */         padding: 15px 35px 15px 20px;
/* 10522 */     }
/* 10523 */     .blog-list__category {
/* 10524 */         margin: 0 0 60px;
/* 10525 */         padding: 25px;
/* 10526 */     }
/* 10527 */ }
/* 10528 */ @media (min-width: 992px) {
/* 10529 */     .blog-list__main--grid {
/* 10530 */         margin: 0 0 60px;
/* 10531 */     }
/* 10532 */     .blog-list__main--grid-cont p {
/* 10533 */         font-size: 18px;
/* 10534 */         line-height: 28px;
/* 10535 */     }
/* 10536 */     .blog-list__category select {
/* 10537 */         font-size: 20px;
/* 10538 */         line-height: 33px;
/* 10539 */         padding: 20px 45px 20px 30px;
/* 10540 */     }
/* 10541 */     .blog-list__category {
/* 10542 */         margin: 0 0 80px;
/* 10543 */         padding: 30px;
/* 10544 */     }
/* 10545 */ }
/* 10546 */ @media (min-width: 1200px) {
/* 10547 */     .blog-list__main--grid {
/* 10548 */         margin: 0 0 75px;
/* 10549 */     }
/* 10550 */     .blog-list__category select {

/* app.css */

/* 10551 */         font-size: 23px;
/* 10552 */         line-height: 36px;
/* 10553 */     }
/* 10554 */     .blog-list__category {
/* 10555 */         margin: 0 0 100px;
/* 10556 */         padding: 35px;
/* 10557 */     }
/* 10558 */ }
/* 10559 */ @media (min-width: 1440px) {
/* 10560 */     .blog-list__main--grid {
/* 10561 */         margin: 0 0 90px;
/* 10562 */     }
/* 10563 */     .blog-list__main--grid-cont h4 {
/* 10564 */         font-size: 30px;
/* 10565 */         line-height: 36px;
/* 10566 */     }
/* 10567 */     .blog-list__category select {
/* 10568 */         font-size: 26px;
/* 10569 */         line-height: 39px;
/* 10570 */     }
/* 10571 */     .blog-list__category {
/* 10572 */         margin: 0 0 120px;
/* 10573 */         padding: 40px;
/* 10574 */     }
/* 10575 */ }
/* 10576 */ .category-blog {
/* 10577 */     padding: 40px 0;
/* 10578 */     background: var(--black);
/* 10579 */ }
/* 10580 */ .category-blog__heading {
/* 10581 */     max-width: 1165px;
/* 10582 */     width: 100%;
/* 10583 */     margin: 0 auto 30px;
/* 10584 */ }
/* 10585 */ .category-blog__heading h2 {
/* 10586 */     color: var(--white);
/* 10587 */ }
/* 10588 */ .category-blog__heading p {
/* 10589 */     color: var(--white);
/* 10590 */     max-width: 1000px;
/* 10591 */     width: 100%;
/* 10592 */     margin: 0 auto;
/* 10593 */ }
/* 10594 */ .category-blog__main {
/* 10595 */     margin: 0 0 30px;
/* 10596 */ }
/* 10597 */ .category-blog__main--cont h4 {
/* 10598 */     color: var(--orange);
/* 10599 */     margin: 0 0 20px;
/* 10600 */     font-weight: 500;

/* app.css */

/* 10601 */ }
/* 10602 */ .category-blog__main--cont h3 {
/* 10603 */     overflow: hidden;
/* 10604 */     display: -webkit-box;
/* 10605 */     -webkit-line-clamp: 3;
/* 10606 */     -webkit-box-orient: vertical;
/* 10607 */ }
/* 10608 */ .category-blog__main--cont p {
/* 10609 */     font-size: 18px;
/* 10610 */     line-height: 26px;
/* 10611 */     color: var(--white);
/* 10612 */     margin: 0 0 22px;
/* 10613 */ }
/* 10614 */ .category-blog__main--img img {
/* 10615 */     width: 100%;
/* 10616 */ }
/* 10617 */ .category-blog__main--img {
/* 10618 */     position: relative;
/* 10619 */     overflow: hidden;
/* 10620 */     margin: 0 0 30px;
/* 10621 */ }
/* 10622 */ .category-blog__main--img img {
/* 10623 */     transition: all 500ms linear;
/* 10624 */ }
/* 10625 */ .category-blog__main--img:hover img {
/* 10626 */     transform: scale(1.1);
/* 10627 */     transition: 500ms linear;
/* 10628 */ }
/* 10629 */ .category-blog__list {
/* 10630 */     display: flex;
/* 10631 */     align-items: center;
/* 10632 */     padding: 5px;
/* 10633 */     background: var(--white);
/* 10634 */     justify-content: space-between;
/* 10635 */     position: relative;
/* 10636 */     flex-wrap: wrap;
/* 10637 */ }
/* 10638 */ .category-blog__list--img {
/* 10639 */     max-width: 100%;
/* 10640 */     width: 100%;
/* 10641 */     overflow: hidden;
/* 10642 */     margin: 0 0 20px;
/* 10643 */ }
/* 10644 */ .category-blog__list--cont {
/* 10645 */     max-width: 100%;
/* 10646 */     width: 100%;
/* 10647 */ }
/* 10648 */ .category-blog__list--img img {
/* 10649 */     width: 100%;
/* 10650 */     transition: all 500ms linear;

/* app.css */

/* 10651 */ }
/* 10652 */ .category-blog__list--cont h6 {
/* 10653 */     color: var(--orange);
/* 10654 */     line-height: 2.4rem;
/* 10655 */     font-weight: 500;
/* 10656 */     margin-bottom: 6px;
/* 10657 */ }
/* 10658 */ .category-blog__list--cont h4 {
/* 10659 */     margin: 0;
/* 10660 */ }
/* 10661 */ .category-blog__list:before {
/* 10662 */     content: "";
/* 10663 */     position: absolute;
/* 10664 */     top: 0;
/* 10665 */     right: 0;
/* 10666 */     width: 0;
/* 10667 */     height: 0;
/* 10668 */     border-style: solid;
/* 10669 */     border-width: 0 36px 36px 0;
/* 10670 */     border-color: transparent #F37023 transparent transparent;
/* 10671 */     transition: all 500ms linear;
/* 10672 */ }
/* 10673 */ .category-blog__list--img:hover img {
/* 10674 */     transform: scale(1.1);
/* 10675 */     transition: 500ms linear;
/* 10676 */ }
/* 10677 */ .category-blog:nth-child(even) {
/* 10678 */     background: var(--white);
/* 10679 */ }
/* 10680 */ .category-blog:nth-child(even) .category-blog__main {
/* 10681 */     flex-direction: row !important;
/* 10682 */ }
/* 10683 */ .category-blog:nth-child(even) .category-blog__heading h2,
/* 10684 */ .category-blog:nth-child(even) .category-blog__heading p,
/* 10685 */ .category-blog:nth-child(even) .category-blog__main--cont h3,
/* 10686 */ .category-blog:nth-child(even) .category-blog__main--cont p {
/* 10687 */     color: var(--black);
/* 10688 */ }
/* 10689 */ .category-blog__main--cont-btn {
/* 10690 */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 10691 */ }
/* 10692 */ .category-blog:nth-child(even) .category-blog__list {
/* 10693 */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 10694 */ }
/* 10695 */ .category-blog__latest--grid {
/* 10696 */     margin: 0 0 30px;
/* 10697 */ }
/* 10698 */ .category-blog__latest--grid:last-child {
/* 10699 */     margin: 0;
/* 10700 */ }

/* app.css */

/* 10701 */
/* 10702 */ @media (min-width: 768px) {
/* 10703 */
/* 10704 */     .category-blog {
/* 10705 */         padding: 60px 0;
/* 10706 */     }
/* 10707 */     .category-blog__heading {
/* 10708 */         margin: 0 auto 45px;
/* 10709 */     }
/* 10710 */     .category-blog__main {
/* 10711 */         margin: 0 0 45px;
/* 10712 */     }
/* 10713 */     .category-blog__list--img {
/* 10714 */         max-width: 45%;
/* 10715 */     }
/* 10716 */     .category-blog__list--cont {
/* 10717 */         max-width: calc(55% - 30px);
/* 10718 */     }
/* 10719 */     .category-blog__list--img {
/* 10720 */         margin: 0;
/* 10721 */     }
/* 10722 */     .category-blog__main--cont p {
/* 10723 */         margin: 0 0 32px;
/* 10724 */     }
/* 10725 */
/* 10726 */ }
/* 10727 */ @media (min-width: 992px) {
/* 10728 */     .category-blog {
/* 10729 */         padding: 80px 0;
/* 10730 */     }
/* 10731 */     .category-blog__heading {
/* 10732 */         margin: 0 auto 60px;
/* 10733 */     }
/* 10734 */     .category-blog__main {
/* 10735 */         margin: 0 0 60px;
/* 10736 */     }
/* 10737 */     .category-blog__main--cont p {
/* 10738 */         margin: 0 0 42px;
/* 10739 */     }
/* 10740 */ }
/* 10741 */ @media (min-width: 1200px) {
/* 10742 */     .category-blog {
/* 10743 */         padding: 100px 0;
/* 10744 */     }
/* 10745 */     .category-blog__heading {
/* 10746 */         margin: 0 auto 75px;
/* 10747 */     }
/* 10748 */     .category-blog__main--img {
/* 10749 */         margin: 0;
/* 10750 */     }

/* app.css */

/* 10751 */     .category-blog__main {
/* 10752 */         margin: 0 0 75px;
/* 10753 */     }
/* 10754 */     .category-blog__latest--grid {
/* 10755 */         margin: 0;
/* 10756 */     }
/* 10757 */ }
/* 10758 */ @media (min-width: 1440px) {
/* 10759 */     .category-blog {
/* 10760 */         padding: 120px 0;
/* 10761 */     }
/* 10762 */     .category-blog__heading {
/* 10763 */         margin: 0 auto 90px;
/* 10764 */     }
/* 10765 */     .category-blog__main {
/* 10766 */         margin: 0 0 90px;
/* 10767 */     }
/* 10768 */ }
/* 10769 */ @media (min-width: 1600px) {
/* 10770 */     .category-blog__main--cont h3 {
/* 10771 */         font-size: 42px;
/* 10772 */         line-height: 54px;
/* 10773 */         margin: 0 0 20px;
/* 10774 */     }
/* 10775 */ }
/* 10776 */ .newslatter {
/* 10777 */     position: relative;
/* 10778 */ }
/* 10779 */ .newslatter__bg {
/* 10780 */     position: absolute;
/* 10781 */     width: 100%;
/* 10782 */     height: 100%;
/* 10783 */     left: 0;
/* 10784 */     top: 0;
/* 10785 */     object-fit: cover;
/* 10786 */ }
/* 10787 */ .newslatter__container {
/* 10788 */     padding: 30px 15px;
/* 10789 */ }
/* 10790 */
/* 10791 */ .newslatter__cont p {
/* 10792 */     margin: 0;
/* 10793 */ }
/* 10794 */ .newslatter__cont h2,
/* 10795 */ .newslatter__cont p {
/* 10796 */     color: var(--white);
/* 10797 */ }
/* 10798 */ .newslatter__form-email{
/* 10799 */     width: 100%;
/* 10800 */ }

/* app.css */

/* 10801 */ .newslatter__cont--list-from .newslatter__form {
/* 10802 */     display: flex;
/* 10803 */     align-items: start;
/* 10804 */     gap: 20px;
/* 10805 */     position: relative;
/* 10806 */     justify-content: space-between;
/* 10807 */     margin: 38px 0 0;
/* 10808 */ }
/* 10809 */ .newslatter__form-btn input{
/* 10810 */     border: none;
/* 10811 */     padding: 14px 24px;
/* 10812 */ }
/* 10813 */ .newslatter__form-btn input{
/* 10814 */     border: none;
/* 10815 */     padding: 14px 24px;
/* 10816 */ }
/* 10817 */
/* 10818 */ .newslatter__form-btn {
/* 10819 */     position: relative;
/* 10820 */     display: block;
/* 10821 */ }
/* 10822 */ .newslatter__form-btn .wpcf7-spinner {
/* 10823 */     position: absolute;
/* 10824 */ }
/* 10825 */ .newslatter__form-btn input {
/* 10826 */     width: 100%;
/* 10827 */     border: 0;
/* 10828 */ }
/* 10829 */ .newslatter__form-email span.wpcf7-form-control-wrap {
/* 10830 */     display: block;
/* 10831 */ }
/* 10832 */ .newslatter__form-email span.wpcf7-form-control-wrap input{
/* 10833 */     background: #FFFFFF1A;
/* 10834 */     border: 1px solid #ffffff87;
/* 10835 */     box-shadow: 0px 0px 10px 0px #0000001A;
/* 10836 */     vertical-align: middle;
/* 10837 */     padding: 14px;
/* 10838 */     color: #ffffff;
/* 10839 */ }
/* 10840 */ .newslatter__form-btn:before {
/* 10841 */     content: "";
/* 10842 */     position: absolute;
/* 10843 */     top: 0;
/* 10844 */     right: 0;
/* 10845 */     width: 0;
/* 10846 */     height: 0;
/* 10847 */     border-style: solid;
/* 10848 */     border-width: 0 22px 22px 0;
/* 10849 */     border-color: transparent #F37023 transparent transparent;
/* 10850 */     transition: all 500ms linear;

/* app.css */

/* 10851 */     z-index: 1;
/* 10852 */ }
/* 10853 */ .newslatter__form-email input::placeholder {
/* 10854 */     color: rgba(255, 255, 255, 0.6);
/* 10855 */ }
/* 10856 */ .newslatter__cont--list-from form .wpcf7-response-output {
/* 10857 */     margin: 30px 0 0 !important;
/* 10858 */ }
/* 10859 */ .newsletter__btn {
/* 10860 */     margin-top: 20px;
/* 10861 */ }
/* 10862 */ .newsletter__bg {
/* 10863 */     height: 100%;
/* 10864 */     top: 50%;
/* 10865 */     transform: translateY(-50%);
/* 10866 */     position: absolute;
/* 10867 */     right: 50%;
/* 10868 */     z-index: 0;
/* 10869 */     width: 100vw;
/* 10870 */     background: rgba(255, 255, 255, 0.1);
/* 10871 */     display: none;
/* 10872 */     z-index: 0 ;
/* 10873 */ }
/* 10874 */ .newslatter__container img{
/* 10875 */     object-fit: cover;
/* 10876 */     width: 100%;
/* 10877 */     height: 100%;
/* 10878 */     z-index: 1;
/* 10879 */     position: relative;
/* 10880 */ }
/* 10881 */ @media (min-width: 768px) {
/* 10882 */     .newslatter__container {
/* 10883 */         padding: 45px 15px;
/* 10884 */     }
/* 10885 */     .newslatter__cont--list-from .newslatter__form {
/* 10886 */         margin: 48px 0 0;
/* 10887 */     }
/* 10888 */     .newsletter__btn {
/* 10889 */         margin-top: 30px;
/* 10890 */     }
/* 10891 */     .newslatter__container img{
/* 10892 */         margin: 30px 0;
/* 10893 */     }
/* 10894 */     .newsletter__bg {
/* 10895 */         display: block;
/* 10896 */     }
/* 10897 */ }
/* 10898 */ @media (min-width: 992px) {
/* 10899 */     .newslatter__container {
/* 10900 */         padding: 60px 15px;

/* app.css */

/* 10901 */     }
/* 10902 */
/* 10903 */     .newslatter__cont--list-from .newslatter__form {
/* 10904 */         margin: 58px 0 0;
/* 10905 */     }
/* 10906 */     .newsletter__btn {
/* 10907 */         margin-top: 40px;
/* 10908 */     }
/* 10909 */     .newslatter__container img{
/* 10910 */         margin: 60px 0;
/* 10911 */     }
/* 10912 */ }
/* 10913 */ @media (min-width: 1200px) {
/* 10914 */     .newslatter__container {
/* 10915 */         padding: 75px 15px;
/* 10916 */     }
/* 10917 */     .newslatter__cont--list-from .newslatter__form {
/* 10918 */         margin: 68px 0 0;
/* 10919 */     }
/* 10920 */     .newsletter__btn {
/* 10921 */         margin-top: 50px;
/* 10922 */     }
/* 10923 */ }
/* 10924 */ @media (min-width: 1440px) {
/* 10925 */     .newslatter__container {
/* 10926 */         padding: 90px 15px;
/* 10927 */     }
/* 10928 */     .newslatter__cont--list-from .newslatter__form {
/* 10929 */         margin: 78px 0 0;
/* 10930 */     }
/* 10931 */     .newsletter__btn {
/* 10932 */         margin-top: 60px;
/* 10933 */     }
/* 10934 */ }
/* 10935 */ .blog-detail__banner {
/* 10936 */     padding: 40px 0;
/* 10937 */     background: var(--black);
/* 10938 */ }
/* 10939 */
/* 10940 */ .blog-detail__banner--breadcrumb ul {
/* 10941 */     display: flex;
/* 10942 */     align-items: center;
/* 10943 */     margin: 0;
/* 10944 */ }
/* 10945 */
/* 10946 */ .blog-detail__banner--breadcrumb ul li {
/* 10947 */     color: var(--white);
/* 10948 */     padding: 0 21px;
/* 10949 */     position: relative;
/* 10950 */     margin: 0;

/* app.css */

/* 10951 */     font-size: 14px;
/* 10952 */     line-height: 26px;
/* 10953 */ }
/* 10954 */
/* 10955 */ .recent-blog__heading {
/* 10956 */     max-width: 1165px;
/* 10957 */     width: 100%;
/* 10958 */     margin: 30px auto;
/* 10959 */ }
/* 10960 */
/* 10961 */ .recent-blog__heading h2 {
/* 10962 */     color: var(--black);
/* 10963 */ }
/* 10964 */
/* 10965 */ .blog-detail__banner--breadcrumb ul li:first-child {
/* 10966 */     padding-left: 0;
/* 10967 */ }
/* 10968 */
/* 10969 */ .blog-detail__banner--breadcrumb ul li:last-child {
/* 10970 */     padding-right: 0;
/* 10971 */ }
/* 10972 */
/* 10973 */ .blog-detail__banner--breadcrumb ul li:before {
/* 10974 */     content: "";
/* 10975 */     position: absolute;
/* 10976 */     background-image: url("/wp-content/uploads/2024/08/down-arrow-orange.svg");
/* 10977 */     transform: rotate(180deg) translateY(50%);
/* 10978 */     width: 12px;
/* 10979 */     height: 16px;
/* 10980 */     right: -7px;
/* 10981 */     background-size: 100% 100%;
/* 10982 */     background-repeat: no-repeat;
/* 10983 */     top: 50%;
/* 10984 */     filter: brightness(10);
/* 10985 */ }
/* 10986 */
/* 10987 */ .blog-detail__banner--breadcrumb ul li:last-child:before {
/* 10988 */     display: none;
/* 10989 */ }
/* 10990 */
/* 10991 */ .blog-detail__banner--breadcrumb {
/* 10992 */     margin: 0 0 30px;
/* 10993 */ }
/* 10994 */
/* 10995 */ .blog-detail__banner--title h1 {
/* 10996 */     color: var(--white);
/* 10997 */     font-weight: 800;
/* 10998 */     font-size: 2.6rem;
/* 10999 */     line-height: 3.6rem;
/* 11000 */     margin-bottom: 0;

/* app.css */

/* 11001 */ }
/* 11002 */
/* 11003 */
/* 11004 */
/* 11005 */ .blog-detail {
/* 11006 */     overflow: unset;
/* 11007 */     padding: 40px 0;
/* 11008 */ }
/* 11009 */
/* 11010 */ .blog-detail__conts--main {
/* 11011 */     display: flex;
/* 11012 */     align-items: center;
/* 11013 */     justify-content: start;
/* 11014 */     background: #FFF6F1;
/* 11015 */ }
/* 11016 */
/* 11017 */ .blog-detail__conts--main-img {
/* 11018 */     display: flex;
/* 11019 */     align-items: center;
/* 11020 */ }
/* 11021 */
/* 11022 */ .blog-detail__main .blog-detail__conts--main-img h3 {
/* 11023 */     font-weight: 700;
/* 11024 */     font-size: 18px;
/* 11025 */     line-height: 26px;
/* 11026 */     color: var(--black);
/* 11027 */     margin: 0;
/* 11028 */ }
/* 11029 */
/* 11030 */ .blog-detail__conts--main-link {
/* 11031 */     padding: 10px 30px;
/* 11032 */ }
/* 11033 */
/* 11034 */ .blog-detail__conts--main-link img {
/* 11035 */     margin: 0 0 0 8px;
/* 11036 */     transform: rotate(270deg);
/* 11037 */ }
/* 11038 */
/* 11039 */ .blog-detail__main .blog-detail__conts-cont {
/* 11040 */     margin-top: 24px
/* 11041 */ }
/* 11042 */
/* 11043 */ .blog-detail__main .blog-detail__conts-cont ul {
/* 11044 */     margin: 0;
/* 11045 */     padding: 0
/* 11046 */ }
/* 11047 */
/* 11048 */ .blog-detail__main .blog-detail__conts-cont ul li {
/* 11049 */     padding-left: 30px;
/* 11050 */     font-weight: 400;

/* app.css */

/* 11051 */     font-size: 18px;
/* 11052 */     line-height: 30px;
/* 11053 */     color: var(--black);
/* 11054 */     position: relative;
/* 11055 */     margin: 0 0 16px
/* 11056 */ }
/* 11057 */
/* 11058 */ .blog-detail__main .blog-detail__conts-cont ul li a::before {
/* 11059 */     content: "";
/* 11060 */     background-color: var(--orange);
/* 11061 */     width: 12px;
/* 11062 */     height: 12px;
/* 11063 */     position: absolute;
/* 11064 */     border-radius: 50%;
/* 11065 */     top: 9px;
/* 11066 */     left: 3px;
/* 11067 */ }
/* 11068 */
/* 11069 */ .blog-detail__main .blog-detail__conts-cont ul li:before {
/* 11070 */     display: none;
/* 11071 */ }
/* 11072 */
/* 11073 */ .blog-detail__summary {
/* 11074 */     background: #FFF6F1;
/* 11075 */     border-left: 5px solid var(--orange);
/* 11076 */     padding: 32px;
/* 11077 */     margin: 60px 0
/* 11078 */ }
/* 11079 */
/* 11080 */ .blog-detail__summary--title {
/* 11081 */     display: flex;
/* 11082 */     align-items: center;
/* 11083 */     border-bottom: 1px solid var(--orange);
/* 11084 */     padding: 0 14px 16px 0;
/* 11085 */ }
/* 11086 */
/* 11087 */ .blog-detail__main .blog-detail__summary--title h3 {
/* 11088 */     font-weight: 700;
/* 11089 */     font-size: 24px;
/* 11090 */     line-height: 32px;
/* 11091 */     color: var(--black);
/* 11092 */     margin: 0
/* 11093 */ }
/* 11094 */
/* 11095 */ .blog-detail__main .blog-detail__summary p {
/* 11096 */     margin: 16px 0 0;
/* 11097 */     font-weight: 500;
/* 11098 */     font-size: 18px;
/* 11099 */     line-height: 27px;
/* 11100 */     color: var(--black)

/* app.css */

/* 11101 */ }
/* 11102 */
/* 11103 */ .blog-detail__main p,
/* 11104 */ .blog-detail__main li {
/* 11105 */     color: var(--black);
/* 11106 */     margin: 0 0 10px;
/* 11107 */     font-size: 14px;
/* 11108 */ }
/* 11109 */
/* 11110 */ .blog-detail__main .blog_left_side a {
/* 11111 */     color: var(--orange);
/* 11112 */     text-decoration: underline;
/* 11113 */ }
/* 11114 */
/* 11115 */ .blog-detail__main img {
/* 11116 */     display: block;
/* 11117 */     margin: 20px 0;
/* 11118 */ }
/* 11119 */
/* 11120 */ .blog-detail__main h4 {
/* 11121 */     font-weight: 800;
/* 11122 */     font-size: 1.8rem;
/* 11123 */     line-height: 3rem;
/* 11124 */     color: var(--black);
/* 11125 */     margin-bottom: 1rem;
/* 11126 */ }
/* 11127 */
/* 11128 */ .blog-detail__main h3 {
/* 11129 */     color: var(--black);
/* 11130 */     margin: 0 0 20px;
/* 11131 */ }
/* 11132 */
/* 11133 */ .blog-detail__main h4 {
/* 11134 */     margin: 0 0 20px;
/* 11135 */ }
/* 11136 */
/* 11137 */ .blog-detail__conts img {
/* 11138 */     margin: 0;
/* 11139 */ }
/* 11140 */
/* 11141 */ .blog-detail__main--img img {
/* 11142 */     margin: 0 0 10px;
/* 11143 */ }
/* 11144 */
/* 11145 */ .blog-detail__main .publish_date{
/* 11146 */    color: var(--orange);
/* 11147 */ }
/* 11148 */
/* 11149 */ .blog-detail__summary--title img {
/* 11150 */     margin: 0 22px 0 0

/* app.css */

/* 11151 */ }
/* 11152 */
/* 11153 */ .blog-detail__main ul {
/* 11154 */     margin: 0 0 30px;
/* 11155 */     padding: 0;
/* 11156 */ }
/* 11157 */
/* 11158 */ .blog-detail__main li {
/* 11159 */     padding-left: 15px;
/* 11160 */     position: relative;
/* 11161 */     word-wrap: break-word;
/* 11162 */ }
/* 11163 */
/* 11164 */ .blog-detail__main li:last-child {
/* 11165 */     margin: 0;
/* 11166 */ }
/* 11167 */
/* 11168 */ .blog-detail__main ul li:before {
/* 11169 */     content: "";
/* 11170 */     position: absolute;
/* 11171 */     width: 6px;
/* 11172 */     height: 6px;
/* 11173 */     background: var(--black);
/* 11174 */     border-radius: 50%;
/* 11175 */     left: 0;
/* 11176 */     top: 10px;
/* 11177 */ }
/* 11178 */
/* 11179 */ .blog-detail__main ol {
/* 11180 */     padding-left: 30px;
/* 11181 */     margin-bottom: 20px;
/* 11182 */ }
/* 11183 */
/* 11184 */ .blog-detail__main ol li {
/* 11185 */     padding-left: 15px;
/* 11186 */     position: relative;
/* 11187 */     font-size: 18px;
/* 11188 */     line-height: 26px;
/* 11189 */     margin: 0 0 10px;
/* 11190 */     color: var(--black);
/* 11191 */     padding: 0;
/* 11192 */ }
/* 11193 */
/* 11194 */ .blog-detail__main .blog-author {
/* 11195 */     background: #F5F5F5;
/* 11196 */     padding: 20px 25px;
/* 11197 */     margin-top: 30px;
/* 11198 */     position: relative;
/* 11199 */     display: flex;
/* 11200 */     align-items: flex-start;

/* app.css */

/* 11201 */     flex-wrap: wrap;
/* 11202 */ }
/* 11203 */
/* 11204 */ .blog-detail__main .blog-author::before {
/* 11205 */     content: "";
/* 11206 */     position: absolute;
/* 11207 */     width: 100%;
/* 11208 */     height: 1px;
/* 11209 */     background: #DCDCDC;
/* 11210 */     top: -30px;
/* 11211 */     left: 0
/* 11212 */ }
/* 11213 */
/* 11214 */ .blog-detail__main .blog-author .blog-author__main {
/* 11215 */     display: flex;
/* 11216 */     align-items: center;
/* 11217 */     justify-content: center;
/* 11218 */     text-align: left;
/* 11219 */     margin: 0 0 16px
/* 11220 */ }
/* 11221 */
/* 11222 */ .blog-detail__main .blog-author .blog-author__main .blog-author__main--img {
/* 11223 */     margin-right: 50px;
/* 11224 */     width: 120px;
/* 11225 */     height: 120px;
/* 11226 */     border: 3px solid var(--orange);
/* 11227 */     border-radius: 50%
/* 11228 */ }
/* 11229 */
/* 11230 */ .blog-detail__main .blog-author .blog-author__main .blog-author__main--img img {
/* 11231 */     border-radius: 50%
/* 11232 */ }
/* 11233 */
/* 11234 */ .blog-detail__main .blog-author .blog-author__main .blog-author__main--img img,
/* 11235 */ .blog-detail__main .blog-author img,
/* 11236 */ .blog-detail__main .blog-detail__conts--main-img img {
/* 11237 */     margin: 0
/* 11238 */ }
/* 11239 */
/* 11240 */ .blog-detail__main .blog-author .blog-author-position p {
/* 11241 */     font-size: 16px
/* 11242 */ }
/* 11243 */
/* 11244 */ .blog-detail__main .blog-author .blog-author__main .blog-author__main--cont h4 {
/* 11245 */     font-weight: 700;
/* 11246 */     font-size: 24px;
/* 11247 */     line-height: 32px;
/* 11248 */     color: var(--black);
/* 11249 */     margin: 0 0 4px
/* 11250 */ }

/* app.css */

/* 11251 */
/* 11252 */ .blog-detail__main .blog-author .blog-author__main .blog-author__main--cont p {
/* 11253 */     font-weight: 400;
/* 11254 */     font-size: 16px;
/* 11255 */     line-height: 22px;
/* 11256 */     color: #777;
/* 11257 */     margin: 0
/* 11258 */ }
/* 11259 */
/* 11260 */ .blog-detail__main .blog-author .blog-author__main--cont>p {
/* 11261 */     margin-bottom: 0
/* 11262 */ }
/* 11263 */
/* 11264 */ .blog-detail__main .blog-author p {
/* 11265 */     font-size: 14px;
/* 11266 */     font-weight: 400;
/* 11267 */     line-height: 21px;
/* 11268 */     margin: 0 0 16px;
/* 11269 */     color: #4A4848;
/* 11270 */ }
/* 11271 */
/* 11272 */ .blog-detail__main .blog-author__main--cont h4 {
/* 11273 */     display: flex;
/* 11274 */     align-items: center;
/* 11275 */ }
/* 11276 */
/* 11277 */ .blog-detail__main .blog-author__main--cont h4 .blog-author-socila-link {
/* 11278 */     width: 34px;
/* 11279 */     height: 34px;
/* 11280 */     display: block;
/* 11281 */     margin-left: 15px;
/* 11282 */ }
/* 11283 */
/* 11284 */ .blog-detail__main .blog-author__main--cont h4 .blog-author-socila-link img {
/* 11285 */     width: 100%;
/* 11286 */     height: 100%;
/* 11287 */ }
/* 11288 */
/* 11289 */ .blog-detail__main .blog-detail__sidebar {
/* 11290 */     max-width: 100%;
/* 11291 */     width: 100%;
/* 11292 */     position: relative;
/* 11293 */     margin: 40px 0 0;
/* 11294 */ }
/* 11295 */
/* 11296 */ .blog-detail__main .blog-detail__sidebar .sticky_bar {
/* 11297 */     position: sticky;
/* 11298 */     top: 130px;
/* 11299 */ }
/* 11300 */

/* app.css */

/* 11301 */ .blog-detail__sidebar .blog-detail__sidebar--bg {
/* 11302 */     position: absolute;
/* 11303 */     width: 100%;
/* 11304 */     object-fit: cover;
/* 11305 */     z-index: 1
/* 11306 */ }
/* 11307 */
/* 11308 */ .blog-detail__main .top-sidebar {
/* 11309 */     background-color: var(--lorange);
/* 11310 */     color: var(--white);
/* 11311 */     padding: 20px;
/* 11312 */ }
/* 11313 */
/* 11314 */ .blog-detail__sidebar--main {
/* 11315 */     padding: 20px;
/* 11316 */     background-color: var(--lorange);
/* 11317 */     margin-top: 40px;
/* 11318 */     height: fit-content;
/* 11319 */ }
/* 11320 */
/* 11321 */ .blog-detail__sidebar--main h3 {
/* 11322 */     font-weight: 700;
/* 11323 */     font-size: 26px;
/* 11324 */     line-height: 35px;
/* 11325 */     color: var(--black);
/* 11326 */     margin: 0 0 19px
/* 11327 */ }
/* 11328 */
/* 11329 */ .blog-detail__sidebar--main h4 {
/* 11330 */     font-weight: 500;
/* 11331 */     font-size: 18px;
/* 11332 */     line-height: 24px;
/* 11333 */     color: var(--black);
/* 11334 */     margin: 0 0 20px
/* 11335 */ }
/* 11336 */
/* 11337 */ .blog-detail__sidebar--main p {
/* 11338 */     font-weight: 400;
/* 11339 */     font-size: 16px;
/* 11340 */     line-height: 22px;
/* 11341 */     color: var(--black);
/* 11342 */     margin: 0 0 20px
/* 11343 */ }
/* 11344 */
/* 11345 */ .blog-detail__sidebar--main input,
/* 11346 */ .blog-detail__sidebar--main textarea {
/* 11347 */     font-weight: 500;
/* 11348 */     font-size: 18px;
/* 11349 */     line-height: 24px;
/* 11350 */     color: #9C9C9C;

/* app.css */

/* 11351 */     padding: 15px;
/* 11352 */     background: var(--white);
/* 11353 */     border: 1px solid #C1C1C1;
/* 11354 */     border-radius: 10px;
/* 11355 */     width: 100%;
/* 11356 */     margin-bottom: 15px;
/* 11357 */     display: inline-block;
/* 11358 */ }
/* 11359 */
/* 11360 */ .wpcf7-form-control-wrap[data-name="phone_field"] {
/* 11361 */     margin-bottom: 15px;
/* 11362 */ }
/* 11363 */
/* 11364 */ .blog-detail__conts--main-link img {
/* 11365 */     margin: 0;
/* 11366 */ }
/* 11367 */
/* 11368 */ .blog-detail__sidebar--main .intl-tel-input {
/* 11369 */     margin-bottom: 15px;
/* 11370 */     color: #9C9C9C;
/* 11371 */ }
/* 11372 */
/* 11373 */ .blog-detail__sidebar--main .intl-tel-input .country-list li::before {
/* 11374 */     display: none;
/* 11375 */ }
/* 11376 */
/* 11377 */ .blog-detail__sidebar--main .intl-tel-input .country-list li span {
/* 11378 */     color: #9C9C9C;
/* 11379 */ }
/* 11380 */
/* 11381 */ .blog-detail__main table {
/* 11382 */     border-collapse: collapse;
/* 11383 */     width: 100%;
/* 11384 */     margin: 30px 0;
/* 11385 */ }
/* 11386 */
/* 11387 */ .blog-detail__main table tr td {
/* 11388 */     border: 1px solid #000;
/* 11389 */     padding: 1rem;
/* 11390 */     color: var(--black);
/* 11391 */ }
/* 11392 */
/* 11393 */ .share_blog {
/* 11394 */     background: #0000000D;
/* 11395 */ }
/* 11396 */
/* 11397 */ .share_blog h3 {
/* 11398 */     color: var(--black);
/* 11399 */     margin-bottom: 0;
/* 11400 */ }

/* app.css */

/* 11401 */
/* 11402 */ .share_box {
/* 11403 */     padding: 60px 0;
/* 11404 */ }
/* 11405 */
/* 11406 */ .share_box .share_icon {
/* 11407 */     display: flex;
/* 11408 */     gap: 15px;
/* 11409 */     margin-left: 25px;
/* 11410 */ }
/* 11411 */
/* 11412 */ .share_box .share_icon .copy_link {
/* 11413 */     width: 46px;
/* 11414 */     height: 46px;
/* 11415 */     background: #000;
/* 11416 */     position: relative;
/* 11417 */ }
/* 11418 */
/* 11419 */ .share_box .share_icon .copy_link .tooltip_copy {
/* 11420 */     display: none;
/* 11421 */     background: var(--black);
/* 11422 */     top: -50px;
/* 11423 */     position: absolute;
/* 11424 */     left: -40px;
/* 11425 */     color: var(--white);
/* 11426 */     width: 140px;
/* 11427 */     padding: 10px;
/* 11428 */     transition: all 0.3s;
/* 11429 */ }
/* 11430 */
/* 11431 */ .share_box .share_icon .copy_link .tooltip_copy:before {
/* 11432 */     content: "";
/* 11433 */     position: absolute;
/* 11434 */     bottom: -17px;
/* 11435 */     left: 55px;
/* 11436 */     border: 10px solid var(--black);
/* 11437 */     border-color: var(--black) transparent transparent transparent;
/* 11438 */ }
/* 11439 */
/* 11440 */ .share_box .share_icon .copy_link:hover .tooltip_copy {
/* 11441 */     display: block;
/* 11442 */     transition: all 0.3s;
/* 11443 */ }
/* 11444 */
/* 11445 */ .blog-detail__main input,
/* 11446 */ .blog-detail__main textarea {
/* 11447 */     color: var(--black);
/* 11448 */ }
/* 11449 */
/* 11450 */ .blog-detail .wpcf7-not-valid-tip {

/* app.css */

/* 11451 */     position: relative !important;
/* 11452 */     bottom: 11px !important;
/* 11453 */ }
/* 11454 */
/* 11455 */ .blog-detail [data-name="phone_field"] .wpcf7-not-valid-tip {
/* 11456 */     top: 3px !important;
/* 11457 */ }
/* 11458 */
/* 11459 */ .blog-detail ul.hidden li {
/* 11460 */     padding-left: 37px;
/* 11461 */ }
/* 11462 */
/* 11463 */ .blog-detail ul.hidden li .subNumber {
/* 11464 */     width: 35px;
/* 11465 */     display: inline-block;
/* 11466 */     position: absolute;
/* 11467 */     left: 0;
/* 11468 */ }
/* 11469 */
/* 11470 */ .blog-detail ul.hidden li:before {
/* 11471 */     content: none;
/* 11472 */ }
/* 11473 */
/* 11474 */
/* 11475 */ @media (min-width: 768px) {
/* 11476 */     .blog-detail__banner--title h1 {
/* 11477 */         font-size: 3.2rem;
/* 11478 */         line-height: 3.8rem;
/* 11479 */     }
/* 11480 */
/* 11481 */     .recent-blog__heading {
/* 11482 */         margin: 45px auto;
/* 11483 */     }
/* 11484 */
/* 11485 */     .blog-detail__banner {
/* 11486 */         padding: 60px 0;
/* 11487 */     }
/* 11488 */
/* 11489 */     .blog-detail__banner--breadcrumb ul li {
/* 11490 */         font-size: 17px;
/* 11491 */         line-height: 29px;
/* 11492 */     }
/* 11493 */
/* 11494 */     .blog-author__main--cont {
/* 11495 */         max-width: calc(100% - 170px);
/* 11496 */     }
/* 11497 */
/* 11498 */     .blog-detail__main .top-sidebar {
/* 11499 */         padding: 20px;
/* 11500 */     }

/* app.css */

/* 11501 */
/* 11502 */     .blog-detail__main .blog-author p {
/* 11503 */         font-size: 16px;
/* 11504 */         line-height: 23px;
/* 11505 */     }
/* 11506 */
/* 11507 */     .blog-detail__main .blog-author .blog-author-position p {
/* 11508 */         font-size: 18px
/* 11509 */     }
/* 11510 */
/* 11511 */     .blog-detail__main .blog-author {
/* 11512 */         padding: 30px 35px;
/* 11513 */     }
/* 11514 */
/* 11515 */     .blog-detail {
/* 11516 */         padding: 60px 0;
/* 11517 */     }
/* 11518 */
/* 11519 */     .blog-detail__main .blog-detail__conts--main-img h3 {
/* 11520 */         font-size: 20px;
/* 11521 */         line-height: 28px;
/* 11522 */     }
/* 11523 */
/* 11524 */     .blog-detail__main img {
/* 11525 */         margin: 40px 0;
/* 11526 */     }
/* 11527 */
/* 11528 */     .blog-detail__main--img img {
/* 11529 */         margin: 0 0 30px;
/* 11530 */     }
/* 11531 */
/* 11532 */     .blog-detail__conts--main-link img {
/* 11533 */         margin: 0;
/* 11534 */     }
/* 11535 */
/* 11536 */     .blog-detail__main h2,
/* 11537 */     .blog-detail__main .top-sidebar .sidebar-title h2 {
/* 11538 */         font-size: 2rem;
/* 11539 */         line-height: 3.2rem;
/* 11540 */         margin-bottom: 1.6rem;
/* 11541 */     }
/* 11542 */
/* 11543 */     .blog-detail__main p,
/* 11544 */     .blog-detail__main li {
/* 11545 */         font-size: 18px;
/* 11546 */         line-height: 28px;
/* 11547 */     }
/* 11548 */
/* 11549 */     .blog-detail__main p {
/* 11550 */         margin: 0 0 20px;

/* app.css */

/* 11551 */     }
/* 11552 */ }
/* 11553 */
/* 11554 */ @media (min-width: 992px) {
/* 11555 */     .blog-detail__banner--title h1 {
/* 11556 */         font-size: 3.9rem;
/* 11557 */         line-height: 4.5rem;
/* 11558 */     }
/* 11559 */
/* 11560 */     .blog-detail__banner {
/* 11561 */         padding: 80px 0;
/* 11562 */     }
/* 11563 */
/* 11564 */     .recent-blog__heading {
/* 11565 */         margin: 60px auto;
/* 11566 */     }
/* 11567 */
/* 11568 */     .blog-detail__banner--breadcrumb ul li {
/* 11569 */         font-size: 20px;
/* 11570 */         line-height: 32px;
/* 11571 */     }
/* 11572 */
/* 11573 */     .blog-detail__main .top-sidebar {
/* 11574 */         padding: 20px;
/* 11575 */     }
/* 11576 */
/* 11577 */     .blog-detail__main .blog-author p {
/* 11578 */         font-size: 18px;
/* 11579 */         line-height: 25px;
/* 11580 */     }
/* 11581 */
/* 11582 */     .blog-detail__main .blog-author {
/* 11583 */         padding: 35px 40px;
/* 11584 */     }
/* 11585 */
/* 11586 */     .blog-detail {
/* 11587 */         padding: 80px 0;
/* 11588 */     }
/* 11589 */
/* 11590 */     .blog-detail__main .blog-detail__conts--main-img h3 {
/* 11591 */         font-size: 22px;
/* 11592 */         line-height: 30px;
/* 11593 */     }
/* 11594 */
/* 11595 */     .blog-detail__main img {
/* 11596 */         margin: 60px 0;
/* 11597 */     }
/* 11598 */
/* 11599 */     .blog-detail__main--img img {
/* 11600 */         margin: 0 0 30px;

/* app.css */

/* 11601 */     }
/* 11602 */
/* 11603 */     .blog-detail__conts--main-link img {
/* 11604 */         margin: 0;
/* 11605 */     }
/* 11606 */
/* 11607 */     .blog-detail__main h2,
/* 11608 */     .blog-detail__main .top-sidebar .sidebar-title h2 {
/* 11609 */         font-size: 2.6rem;
/* 11610 */         line-height: 3.8rem;
/* 11611 */         margin-bottom: 1.8rem;
/* 11612 */     }
/* 11613 */ }
/* 11614 */
/* 11615 */ @media (min-width: 1200px) {
/* 11616 */     .recent-blog__heading {
/* 11617 */         margin: 60px auto;
/* 11618 */     }
/* 11619 */
/* 11620 */     .blog-detail__banner--title h1 {
/* 11621 */         font-size: 4.4rem;
/* 11622 */         line-height: 5.7rem;
/* 11623 */     }
/* 11624 */
/* 11625 */     .blog-detail__banner {
/* 11626 */         padding: 100px 0;
/* 11627 */     }
/* 11628 */
/* 11629 */     .blog-detail__banner--breadcrumb ul li {
/* 11630 */         font-size: 23px;
/* 11631 */         line-height: 35px;
/* 11632 */     }
/* 11633 */
/* 11634 */     .blog-detail__main .blog-detail__sidebar {
/* 11635 */         max-width: 30%;
/* 11636 */         width: 100%;
/* 11637 */         position: relative;
/* 11638 */         margin: 0 10px;
/* 11639 */         padding: 0px;
/* 11640 */     }
/* 11641 */
/* 11642 */     .blog-detail__main .top-sidebar {
/* 11643 */         padding: 20px;
/* 11644 */     }
/* 11645 */
/* 11646 */     .blog-detail__main .blog-author p {
/* 11647 */         font-size: 20px;
/* 11648 */         line-height: 27px;
/* 11649 */     }
/* 11650 */

/* app.css */

/* 11651 */     .blog-detail__main .blog-author {
/* 11652 */         padding: 40px 50px;
/* 11653 */     }
/* 11654 */
/* 11655 */     .blog-detail__main .blog-detail__conts--main-img h3 {
/* 11656 */         font-size: 24px;
/* 11657 */         line-height: 32px;
/* 11658 */     }
/* 11659 */
/* 11660 */     .blog-detail {
/* 11661 */         padding: 100px 0;
/* 11662 */     }
/* 11663 */
/* 11664 */     .blog-detail__main h2 {
/* 11665 */         font-size: 3.6rem;
/* 11666 */         line-height: 4.8rem;
/* 11667 */     }
/* 11668 */
/* 11669 */     .blog-detail__main h3 {
/* 11670 */         font-size: 2.4rem;
/* 11671 */         line-height: 3.4rem;
/* 11672 */         font-weight: 700;
/* 11673 */     }
/* 11674 */
/* 11675 */     .blog-detail__main h2 {
/* 11676 */         font-size: 3.1rem;
/* 11677 */         line-height: 3.5rem;
/* 11678 */         font-weight: 700;
/* 11679 */     }
/* 11680 */ }
/* 11681 */
/* 11682 */ @media (min-width: 1440px) {
/* 11683 */     .recent-blog__heading {
/* 11684 */         margin: 90px auto;
/* 11685 */     }
/* 11686 */
/* 11687 */     .blog-detail__banner--title h1 {
/* 11688 */         font-size: 5.4rem;
/* 11689 */         line-height: 6.7rem;
/* 11690 */     }
/* 11691 */
/* 11692 */     .blog-detail__banner {
/* 11693 */         padding: 120px 0;
/* 11694 */     }
/* 11695 */
/* 11696 */     .blog-detail__banner--breadcrumb ul li {
/* 11697 */         font-size: 26px;
/* 11698 */         line-height: 38px;
/* 11699 */     }
/* 11700 */

/* app.css */

/* 11701 */     .blog-detail__main h2,
/* 11702 */     .blog-detail__main .top-sidebar .sidebar-title h2 {
/* 11703 */         font-size: 3rem;
/* 11704 */         line-height: 4.2rem;
/* 11705 */         margin-bottom: 2rem;
/* 11706 */     }
/* 11707 */
/* 11708 */     .blog-detail {
/* 11709 */         padding: 120px 0;
/* 11710 */     }
/* 11711 */
/* 11712 */     .blog-detail__main h2 {
/* 11713 */         font-size: 4.2rem;
/* 11714 */         line-height: 5.4rem;
/* 11715 */     }
/* 11716 */ }
/* 11717 */
/* 11718 */ @media (min-width: 1601px) {
/* 11719 */     .blog-detail__banner--title h1 {
/* 11720 */         font-size: 6.4rem;
/* 11721 */         line-height: 7.7rem;
/* 11722 */     }
/* 11723 */ }
/* 11724 */ .case-detail__banner {
/* 11725 */     padding: 40px 0;
/* 11726 */     background: var(--black);
/* 11727 */ }
/* 11728 */ .case-detail__banner--breadcrumb ul {
/* 11729 */     display: flex;
/* 11730 */     align-items: center;
/* 11731 */     margin: 0;
/* 11732 */ }
/* 11733 */ .case-detail__banner--breadcrumb ul li {
/* 11734 */     color: var(--white);
/* 11735 */     padding: 0 21px;
/* 11736 */     position: relative;
/* 11737 */     margin: 0;
/* 11738 */     font-size: 14px;
/* 11739 */     line-height: 26px;
/* 11740 */ }
/* 11741 */ .case-detail__banner--breadcrumb ul li:first-child {
/* 11742 */     padding-left: 0;
/* 11743 */ }
/* 11744 */ .case-detail__banner--breadcrumb ul li:last-child {
/* 11745 */     padding-right: 0;
/* 11746 */ }
/* 11747 */ .case-detail__banner--breadcrumb ul li:before {
/* 11748 */     content: "";
/* 11749 */     position: absolute;
/* 11750 */     background-image: url("/wp-content/uploads/2024/08/down-arrow-orange.svg");

/* app.css */

/* 11751 */     transform: rotate(180deg) translateY(50%);
/* 11752 */     width: 12px;
/* 11753 */     height: 16px;
/* 11754 */     right: -7px;
/* 11755 */     background-size: 100% 100%;
/* 11756 */     background-repeat: no-repeat;
/* 11757 */     top: 50%;
/* 11758 */     filter: brightness(10);
/* 11759 */ }
/* 11760 */ .case-detail__banner--breadcrumb ul li:last-child:before {
/* 11761 */     display: none;
/* 11762 */ }
/* 11763 */ .case-detail__banner--breadcrumb {
/* 11764 */     margin: 0 0 30px;
/* 11765 */ }
/* 11766 */ .case-detail__banner--title h1 {
/* 11767 */     color: var(--white);
/* 11768 */     font-weight: 800;
/* 11769 */     font-size: 2.6rem;
/* 11770 */     line-height: 3.6rem;
/* 11771 */     margin-bottom: 0;
/* 11772 */ }
/* 11773 */ .case-detail__img {
/* 11774 */     padding: 40px 0 30px;
/* 11775 */ }
/* 11776 */ .case-detail__img--main {
/* 11777 */     position: relative;
/* 11778 */     margin: 0 0 20px;
/* 11779 */     overflow: hidden;
/* 11780 */ }
/* 11781 */ .case-detail__img--main img {
/* 11782 */     position: relative;
/* 11783 */     width: 100%;
/* 11784 */     overflow: hidden;
/* 11785 */     transition: all 500ms linear;
/* 11786 */ }
/* 11787 */ .case-detail__img--cont h3 {
/* 11788 */     color: var(--black);
/* 11789 */     margin-bottom: 20px;
/* 11790 */ }
/* 11791 */ .case-detail__img--cont {
/* 11792 */     text-align: center;
/* 11793 */     max-width: 1121px;
/* 11794 */     width: 100%;
/* 11795 */     margin: 0 auto;
/* 11796 */ }
/* 11797 */ .case-detail__img--main img:hover {
/* 11798 */     transform: scale(1.1);
/* 11799 */     transition: 500ms linear;
/* 11800 */ }

/* app.css */

/* 11801 */ .case-detail__grid .row:nth-child(odd) {
/* 11802 */     flex-direction: row-reverse;
/* 11803 */     margin-bottom: 30px;
/* 11804 */ }
/* 11805 */ .case-detail__grid img {
/* 11806 */     margin: 0 0 30px;
/* 11807 */ }
/* 11808 */ .case-detail__grid h3 {
/* 11809 */     color: var(--black);
/* 11810 */     margin-bottom: 20px;
/* 11811 */ }
/* 11812 */ .case-detail__grid p {
/* 11813 */     font-size: 18px;
/* 11814 */     line-height: 28px;
/* 11815 */     margin-bottom: 20px;
/* 11816 */ }
/* 11817 */ .case-detail__grid p:last-child {
/* 11818 */     margin: 0;
/* 11819 */ }
/* 11820 */ .case-detail__grid ul li {
/* 11821 */     color: var(--black);
/* 11822 */     margin: 0 0 15px;
/* 11823 */     font-size: 18px;
/* 11824 */     line-height: 28px;
/* 11825 */     position: relative;
/* 11826 */     padding-left: 20px;
/* 11827 */ }
/* 11828 */ .case-detail__grid ul li strong {
/* 11829 */     font-weight: 600;
/* 11830 */ }
/* 11831 */ .case-detail__grid ul li:last-child {
/* 11832 */     margin: 0;
/* 11833 */ }
/* 11834 */ .case-detail__grid ul li:before {
/* 11835 */     content: "";
/* 11836 */     position: absolute;
/* 11837 */     width: 6px;
/* 11838 */     height: 6px;
/* 11839 */     background: var(--black);
/* 11840 */     border-radius: 10px;
/* 11841 */     top: 10px;
/* 11842 */     left: 0;
/* 11843 */ }
/* 11844 */ .case-detail__feature {
/* 11845 */     padding: 40px 0;
/* 11846 */     background: linear-gradient(245.24deg, rgba(255, 0, 0, 0.05) 0%, rgba(247, 141, 30, 0.05) 100%);
/* 11847 */ }
/* 11848 */ .case-detail__feature .case-detail__feature__row h3 {
/* 11849 */     color: var(--black);
/* 11850 */     margin: 0;

/* app.css */

/* 11851 */ }
/* 11852 */ .case-detail__feature .case-detail__feature__row {
/* 11853 */     margin-bottom: 30px;
/* 11854 */ }
/* 11855 */ .case-detail__feature--grid {
/* 11856 */     background: var(--white);
/* 11857 */     padding: 30px;
/* 11858 */     display: flex;
/* 11859 */     align-items: stretch;
/* 11860 */     flex-wrap: wrap;
/* 11861 */     justify-content: space-between;
/* 11862 */     height: 100%;
/* 11863 */ }
/* 11864 */ .case-detail__feature--grid-num {
/* 11865 */     position: relative;
/* 11866 */     width: 82px;
/* 11867 */     height: 82px;
/* 11868 */     border: 1px solid var(--orange);
/* 11869 */     transition: all 500ms linear;
/* 11870 */     margin: 0 auto 30px;
/* 11871 */ }
/* 11872 */ .case-detail__feature--grid-cont {
/* 11873 */     max-width: 100%;
/* 11874 */     width: 100%;
/* 11875 */ }
/* 11876 */ .case-detail__feature--grid-cont p {
/* 11877 */     margin: 0;
/* 11878 */     font-size: 18px;
/* 11879 */     line-height: 24px;
/* 11880 */ }
/* 11881 */ .case-detail__feature--main {
/* 11882 */     row-gap: 30px;
/* 11883 */     align-items: stretch;
/* 11884 */ }
/* 11885 */ .case-detail__feature--grid-num h2 {
/* 11886 */     margin: 0;
/* 11887 */     position: absolute;
/* 11888 */     top: 50%;
/* 11889 */     left: 50%;
/* 11890 */     transform: translate(-50% , -50%);
/* 11891 */     transition: all 500ms linear;
/* 11892 */ }
/* 11893 */ .case-detail__feature--grid-num:before {
/* 11894 */     content: "";
/* 11895 */     position: absolute;
/* 11896 */     top: 0;
/* 11897 */     right: 0;
/* 11898 */     width: 0;
/* 11899 */     height: 0;
/* 11900 */     border-style: solid;

/* app.css */

/* 11901 */     border-width: 0 36px 36px 0;
/* 11902 */     border-color: transparent #F37023 transparent transparent;
/* 11903 */     transition: all 500ms linear;
/* 11904 */ }
/* 11905 */ .case-detail__feature--grid-num:hover {
/* 11906 */     background: var(--orange);
/* 11907 */ }
/* 11908 */ .case-detail__feature--grid-num:hover h2 {
/* 11909 */     color: var(--white);
/* 11910 */     transition: 500ms linear;
/* 11911 */ }
/* 11912 */ .case-detail__feature--main-col {
/* 11913 */     height: inherit;
/* 11914 */ }
/* 11915 */
/* 11916 */ @media (min-width: 768px) {
/* 11917 */     .case-detail__banner--title h1 {
/* 11918 */         font-size: 3.2rem;
/* 11919 */         line-height: 3.8rem;
/* 11920 */     }
/* 11921 */     .case-detail__banner {
/* 11922 */         padding: 60px 0;
/* 11923 */     }
/* 11924 */     .case-detail__img {
/* 11925 */         padding: 60px 0 45px;
/* 11926 */     }
/* 11927 */     .case-detail__feature {
/* 11928 */         padding: 60px 0;
/* 11929 */     }
/* 11930 */     .case-detail__banner--breadcrumb ul li {
/* 11931 */         font-size: 17px;
/* 11932 */         line-height: 29px;
/* 11933 */     }
/* 11934 */     .case-detail__img--main {
/* 11935 */         margin: 0 0 40px;
/* 11936 */     }
/* 11937 */
/* 11938 */     .case-detail__grid img {
/* 11939 */         margin: 0;
/* 11940 */     }
/* 11941 */     .case-detail__feature .case-detail__feature__row {
/* 11942 */         margin-bottom: 45px;
/* 11943 */     }
/* 11944 */     .case-detail__feature--grid-num {
/* 11945 */         height: 112px;
/* 11946 */         width: 112px;
/* 11947 */     }
/* 11948 */ }
/* 11949 */ @media (min-width: 992px) {
/* 11950 */     .case-detail__banner--title h1 {

/* app.css */

/* 11951 */         font-size: 3.9rem;
/* 11952 */         line-height: 4.5rem;
/* 11953 */     }
/* 11954 */     .case-detail__banner {
/* 11955 */         padding: 80px 0;
/* 11956 */     }
/* 11957 */     .case-detail__img {
/* 11958 */         padding: 80px 0 60px;
/* 11959 */     }
/* 11960 */     .case-detail__feature {
/* 11961 */         padding: 80px 0;
/* 11962 */     }
/* 11963 */     .case-detail__banner--breadcrumb ul li {
/* 11964 */         font-size: 20px;
/* 11965 */         line-height: 32px;
/* 11966 */     }
/* 11967 */     .case-detail__img--main {
/* 11968 */         margin: 0 0 60px;
/* 11969 */     }
/* 11970 */     .case-detail__feature .case-detail__feature__row {
/* 11971 */         margin-bottom: 60px;
/* 11972 */     }
/* 11973 */     .case-detail__feature--grid-cont {
/* 11974 */         max-width: calc(100% - 135px);
/* 11975 */     }
/* 11976 */     .case-detail__feature--grid-num {
/* 11977 */         margin: 0;
/* 11978 */     }
/* 11979 */ }
/* 11980 */ @media (min-width: 1200px) {
/* 11981 */     .case-detail__banner--title h1 {
/* 11982 */         font-size: 4.4rem;
/* 11983 */         line-height: 5.7rem;
/* 11984 */     }
/* 11985 */     .case-detail__banner {
/* 11986 */         padding: 100px 0;
/* 11987 */     }
/* 11988 */     .case-detail__img {
/* 11989 */         padding: 100px 0 75px;
/* 11990 */     }
/* 11991 */     .case-detail__feature {
/* 11992 */         padding: 100px 0;
/* 11993 */     }
/* 11994 */     .case-detail__banner--breadcrumb ul li {
/* 11995 */         font-size: 23px;
/* 11996 */         line-height: 35px;
/* 11997 */     }
/* 11998 */     .case-detail__grid .row:nth-child(odd) {
/* 11999 */         margin-bottom: 0;
/* 12000 */     }

/* app.css */

/* 12001 */     .case-detail__feature .case-detail__feature__row {
/* 12002 */         margin-bottom: 75px;
/* 12003 */     }
/* 12004 */ }
/* 12005 */ @media (min-width: 1440px) {
/* 12006 */     .case-detail__banner--title h1 {
/* 12007 */         font-size: 5.4rem;
/* 12008 */         line-height: 6.7rem;
/* 12009 */     }
/* 12010 */     .case-detail__banner {
/* 12011 */         padding: 120px 0;
/* 12012 */     }
/* 12013 */     .case-detail__img {
/* 12014 */         padding: 120px 0 90px;
/* 12015 */     }
/* 12016 */     .case-detail__feature {
/* 12017 */         padding: 120px 0;
/* 12018 */     }
/* 12019 */     .case-detail__banner--breadcrumb ul li {
/* 12020 */         font-size: 26px;
/* 12021 */         line-height: 38px;
/* 12022 */     }
/* 12023 */     .case-detail__feature .case-detail__feature__row {
/* 12024 */         margin-bottom: 90px;
/* 12025 */     }
/* 12026 */ }
/* 12027 */ @media (min-width: 1601px) {
/* 12028 */     .case-detail__banner--title h1 {
/* 12029 */         font-size: 6.4rem;
/* 12030 */         line-height: 7.7rem;
/* 12031 */     }
/* 12032 */     .case-detail__grid h3 {
/* 12033 */         font-size: 36px;
/* 12034 */         line-height: 56px;
/* 12035 */     }
/* 12036 */     .case-detail__feature .case-detail__feature__row h3 {
/* 12037 */         font-size: 42px;
/* 12038 */         line-height: 56px;
/* 12039 */     }
/* 12040 */ }
/* 12041 */ /* Base Styles */
/* 12042 */ .make-happy {
/* 12043 */     background: rgba(243, 112, 35, 0.05);
/* 12044 */     padding: 40px 0;
/* 12045 */ }
/* 12046 */ .make-happy__heading {
/* 12047 */     text-align: center;
/* 12048 */     margin: 0 auto 30px;
/* 12049 */     max-width: 1235px;
/* 12050 */     width: 100%;

/* app.css */

/* 12051 */ }
/* 12052 */ .make-happy__heading p {
/* 12053 */     margin: 0;
/* 12054 */ }
/* 12055 */ .make-happy__main {
/* 12056 */     display: flex;
/* 12057 */     align-items: stretch;
/* 12058 */     flex-wrap: wrap;
/* 12059 */     width: 100%;
/* 12060 */     gap: 20px;
/* 12061 */ }
/* 12062 */ .make-happy__main--grid {
/* 12063 */     width: 100%;
/* 12064 */     max-width: 100%;
/* 12065 */     padding: 15px;
/* 12066 */ }
/* 12067 */ .make-happy__main--grid:nth-child(1) { background: #C4F1FE; }
/* 12068 */ .make-happy__main--grid:nth-child(2) { background: #D7E5FF; }
/* 12069 */ .make-happy__main--grid:nth-child(3) { background: #94E7CB; }
/* 12070 */ .make-happy__main--grid:nth-child(4) { background: #FFDBAC; }
/* 12071 */ .make-happy__main--grid:nth-child(5) { background: #FFCFDE; }
/* 12072 */ .make-happy__main--grid:last-child { background: #DCD7FF; }
/* 12073 */ .make-happy__main--grid-img {
/* 12074 */     width: 90px;
/* 12075 */     height: 90px;
/* 12076 */     margin-bottom: 20px;
/* 12077 */     position: relative;
/* 12078 */     background: rgba(255, 255, 255, 0.4);
/* 12079 */     border: 2px solid var(--white);
/* 12080 */ }
/* 12081 */ .make-happy__main--grid-img img {
/* 12082 */     position: absolute;
/* 12083 */     top: 50%;
/* 12084 */     left: 50%;
/* 12085 */     width: 40px;
/* 12086 */     transform: translate(-50%, -50%);
/* 12087 */ }
/* 12088 */ .make-happy__main--grid-img:before {
/* 12089 */     content: "";
/* 12090 */     position: absolute;
/* 12091 */     top: 0;
/* 12092 */     right: 0;
/* 12093 */     border-style: solid;
/* 12094 */     border-width: 0 44px 44px 0;
/* 12095 */     border-color: transparent #fff transparent transparent;
/* 12096 */     transition: all 500ms linear;
/* 12097 */ }
/* 12098 */ .make-happy__main--grid h3 {
/* 12099 */     margin: 0 0 12px;
/* 12100 */     color: var(--black);

/* app.css */

/* 12101 */ }
/* 12102 */ .make-happy__main--grid p {
/* 12103 */     margin: 0;
/* 12104 */     font-size: 14px;
/* 12105 */     line-height: 22px;
/* 12106 */ }
/* 12107 */
/* 12108 */ /* Responsive Styles */
/* 12109 */ @media (min-width: 576px) {
/* 12110 */     .make-happy__main--grid {
/* 12111 */         max-width: calc(50% - 10px);
/* 12112 */         padding: 22px;
/* 12113 */     }
/* 12114 */ }
/* 12115 */
/* 12116 */ @media (min-width: 768px) {
/* 12117 */     .make-happy {
/* 12118 */         padding: 60px 0;
/* 12119 */     }
/* 12120 */     .make-happy__heading {
/* 12121 */         margin: 0 auto 45px;
/* 12122 */     }
/* 12123 */     .make-happy__main {
/* 12124 */         gap: 30px;
/* 12125 */     }
/* 12126 */     .make-happy__main--grid {
/* 12127 */         padding: 30px;
/* 12128 */     }
/* 12129 */     .make-happy__main--grid p {
/* 12130 */         font-size: 16px;
/* 12131 */         line-height: 24px;
/* 12132 */     }
/* 12133 */ }
/* 12134 */
/* 12135 */ @media (min-width: 992px) {
/* 12136 */     .make-happy {
/* 12137 */         padding: 80px 0;
/* 12138 */     }
/* 12139 */     .make-happy__heading {
/* 12140 */         margin: 0 auto 60px;
/* 12141 */     }
/* 12142 */     .make-happy__main--grid-img {
/* 12143 */         width: 100px;
/* 12144 */         height: 100px;
/* 12145 */     }
/* 12146 */     .make-happy__main--grid-img img {
/* 12147 */         width: 50px;
/* 12148 */     }
/* 12149 */     .make-happy__main--grid p {
/* 12150 */         font-size: 18px;

/* app.css */

/* 12151 */         line-height: 26px;
/* 12152 */     }
/* 12153 */ }
/* 12154 */
/* 12155 */ @media (min-width: 1200px) {
/* 12156 */     .make-happy {
/* 12157 */         padding: 100px 0;
/* 12158 */     }
/* 12159 */     .make-happy__heading {
/* 12160 */         margin: 0 auto 75px;
/* 12161 */     }
/* 12162 */     .make-happy__main {
/* 12163 */         gap: 30px;
/* 12164 */     }
/* 12165 */     .make-happy__main--grid {
/* 12166 */         max-width: calc(33.333% - 20px);
/* 12167 */         padding: 35px;
/* 12168 */     }
/* 12169 */     .make-happy__main--grid-img {
/* 12170 */         width: 120px;
/* 12171 */         height: 120px;
/* 12172 */     }
/* 12173 */ }
/* 12174 */
/* 12175 */ @media (min-width: 1440px) {
/* 12176 */     .make-happy {
/* 12177 */         padding: 120px 0;
/* 12178 */     }
/* 12179 */     .make-happy__heading {
/* 12180 */         margin: 0 auto 90px;
/* 12181 */     }
/* 12182 */     .make-happy__main {
/* 12183 */         gap: 40px;
/* 12184 */     }
/* 12185 */     .make-happy__main--grid {
/* 12186 */         max-width: calc(33.333% - 27px);
/* 12187 */         padding: 40px;
/* 12188 */     }
/* 12189 */ }
/* 12190 */
/* 12191 */ .career-form {
/* 12192 */     padding: 40px 0;
/* 12193 */ }
/* 12194 */ .career-form__form {
/* 12195 */     padding: 30px 20px;
/* 12196 */     position: relative;
/* 12197 */     border: 2px solid var(--orange);
/* 12198 */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 12199 */     margin: 0 0 30px;
/* 12200 */ }

/* app.css */

/* 12201 */ .career-form__form::before {
/* 12202 */     content: "";
/* 12203 */     position: absolute;
/* 12204 */     top: 0;
/* 12205 */     right: 0;
/* 12206 */     width: 0;
/* 12207 */     height: 0;
/* 12208 */     border-style: solid;
/* 12209 */     border-width: 0 64px 64px 0;
/* 12210 */     border-color: transparent #F37023 transparent transparent;
/* 12211 */     transition: all 500ms linear;
/* 12212 */ }
/* 12213 */ .career-form__form form  span.wpcf7-form-control-wrap {
/* 12214 */     margin: 0 0 40px;
/* 12215 */     display: block;
/* 12216 */ }
/* 12217 */ .career-form__form form .intl-tel-input.separate-dial-code .selected-dial-code {
/* 12218 */     color: var(--lblack);
/* 12219 */ }
/* 12220 */ .career-form__form form .intl-tel-input .selected-flag {
/* 12221 */     padding: 0 20px 0 8px;
/* 12222 */     background: transparent;
/* 12223 */ }
/* 12224 */ .career-form__form form .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
/* 12225 */     background: transparent;
/* 12226 */ }
/* 12227 */ .career-form__form form .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {
/* 12228 */     padding-left: 85px;
/* 12229 */ }
/* 12230 */ .career-form__form form .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {
/* 12231 */     padding-left: 95px;
/* 12232 */ }
/* 12233 */ .career-form__form form .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {
/* 12234 */     padding-left: 110px
/* 12235 */ }
/* 12236 */ .career-form__form form .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {
/* 12237 */     padding-left: 120px
/* 12238 */ }
/* 12239 */ .career-form__form h3 {
/* 12240 */     text-align: start;
/* 12241 */     color: var(--black);
/* 12242 */ }
/* 12243 */ .career-form__form p {
/* 12244 */     text-align: start;
/* 12245 */     font-size: 18px;
/* 12246 */     line-height: 26px;
/* 12247 */     margin: 0;
/* 12248 */ }
/* 12249 */ .career-form__form form {
/* 12250 */     margin-top: 40px;

/* app.css */

/* 12251 */ }
/* 12252 */ .career-form .row {
/* 12253 */     flex-direction: row-reverse;
/* 12254 */ }
/* 12255 */ .career-form__form form span.wpcf7-form-control-wrap select {
/* 12256 */     color: var(--lblack);
/* 12257 */ }
/* 12258 */ .career-form__inner span.wpcf7-form-control-wrap {
/* 12259 */     max-width: 100%;
/* 12260 */     width: 100%;
/* 12261 */ }
/* 12262 */ .career-form__inner {
/* 12263 */     display: flex;
/* 12264 */     align-items: center;
/* 12265 */     justify-content: space-between;
/* 12266 */     flex-wrap: wrap;
/* 12267 */ }
/* 12268 */
/* 12269 */ @media (min-width: 768px) {
/* 12270 */     .career-form {
/* 12271 */         padding: 60px 0;
/* 12272 */     }
/* 12273 */     .career-form__form {
/* 12274 */         padding: 40px;
/* 12275 */         margin: 0 0 40px;
/* 12276 */     }
/* 12277 */     .career-form__inner span.wpcf7-form-control-wrap {
/* 12278 */         max-width: calc((100% /2) - 20px);
/* 12279 */         width: 100%;
/* 12280 */     }
/* 12281 */ }
/* 12282 */
/* 12283 */ @media (min-width: 992px) {
/* 12284 */     .career-form {
/* 12285 */         padding: 80px 0;
/* 12286 */     }
/* 12287 */     .career-form__form {
/* 12288 */         margin: 0;
/* 12289 */     }
/* 12290 */ }
/* 12291 */
/* 12292 */ @media (min-width: 1200px) {
/* 12293 */     .career-form {
/* 12294 */         padding: 100px 0;
/* 12295 */     }
/* 12296 */ }
/* 12297 */
/* 12298 */ @media (min-width: 1440px) {
/* 12299 */     .career-form {
/* 12300 */         padding: 120px 0;

/* app.css */

/* 12301 */     }
/* 12302 */ }
/* 12303 */ .current-job {
/* 12304 */     padding: 120px 0;
/* 12305 */     background: #F370230D;
/* 12306 */ }
/* 12307 */
/* 12308 */ .current-job__heading {
/* 12309 */     max-width: 1240px;
/* 12310 */     width: 100%;
/* 12311 */     margin: 0 auto 30px;
/* 12312 */     text-align: center;
/* 12313 */ }
/* 12314 */
/* 12315 */ .current-job__heading p {
/* 12316 */     margin: 0;
/* 12317 */ }
/* 12318 */
/* 12319 */ .current-job__accordion {
/* 12320 */     display: flex;
/* 12321 */     justify-content: space-between;
/* 12322 */     padding: 36px;
/* 12323 */     flex-wrap: nowrap;
/* 12324 */     background: #fff;
/* 12325 */     margin-bottom: 30px;
/* 12326 */     border: 1px solid #cccccc;
/* 12327 */     border-left: 3px solid #ff851d;
/* 12328 */     border-right: 3px solid #ff851d;
/* 12329 */ }
/* 12330 */
/* 12331 */ .current-job__main {
/* 12332 */     width: 100%;
/* 12333 */     margin: 0 auto;
/* 12334 */ }
/* 12335 */
/* 12336 */ .current-job__accordion--head {
/* 12337 */     width: 100%;
/* 12338 */     /* margin: 0 0 10px; */
/* 12339 */ }
/* 12340 */
/* 12341 */ .current-job__accordion--button {
/* 12342 */     width: 100%;
/* 12343 */     display: flex;
/* 12344 */     gap: 15px;
/* 12345 */     align-items: end;
/* 12346 */     justify-content: end;
/* 12347 */ }
/* 12348 */
/* 12349 */ .current-job__accordion--head h3 {
/* 12350 */     color: var(--black);

/* app.css */

/* 12351 */ }
/* 12352 */
/* 12353 */ .current-job__accordion--head-position {
/* 12354 */     display: flex;
/* 12355 */     flex-wrap: wrap;
/* 12356 */ }
/* 12357 */
/* 12358 */ .current-job__accordion--head-position li {
/* 12359 */     margin: 0px 20px 20px 0;
/* 12360 */ }
/* 12361 */
/* 12362 */ .current-job__accordion__text {
/* 12363 */     font-size: 16px;
/* 12364 */     font-weight: 600;
/* 12365 */     color: var(--black);
/* 12366 */     margin-bottom: 3px;
/* 12367 */ }
/* 12368 */
/* 12369 */ .current-job__accordion__value {
/* 12370 */     font-size: 16px;
/* 12371 */     font-weight: 600;
/* 12372 */     color: var(--border);
/* 12373 */ }
/* 12374 */
/* 12375 */ .current-job__accordion--head-position li:last-child {
/* 12376 */     margin: 0;
/* 12377 */ }
/* 12378 */
/* 12379 */ .current-job__accordion--button .btn {
/* 12380 */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 12381 */     font-weight: 400;
/* 12382 */     padding: 10px 25px;
/* 12383 */     font-size: 2.0rem;
/* 12384 */     line-height: 2.2rem;
/* 12385 */ }
/* 12386 */
/* 12387 */ .current-job__accordion--button .apply-btn {
/* 12388 */     margin-right: 30px;
/* 12389 */ }
/* 12390 */
/* 12391 */ .current-job__accordion-panel {
/* 12392 */     display: none;
/* 12393 */     padding: 20px 30px;
/* 12394 */     background: #fff;
/* 12395 */     margin-bottom: 30px;
/* 12396 */     border: 1px solid #cccccc;
/* 12397 */     border-left: 3px solid #ff851d;
/* 12398 */     border-right: 3px solid #ff851d;
/* 12399 */ }
/* 12400 */

/* app.css */

/* 12401 */ .current-job__accordion-panel p {
/* 12402 */     font-size: 14px;
/* 12403 */     line-height: 20px;
/* 12404 */ }
/* 12405 */
/* 12406 */ .current-job__accordion-panel ul {
/* 12407 */     margin: 20px 0 10px;
/* 12408 */ }
/* 12409 */
/* 12410 */ .current-job__accordion-panel ul li {
/* 12411 */     padding-left: 20px;
/* 12412 */     margin: 0 0 15px;
/* 12413 */     color: var(--black);
/* 12414 */     font-size: 14px;
/* 12415 */     line-height: 20px;
/* 12416 */     position: relative;
/* 12417 */ }
/* 12418 */
/* 12419 */ .current-job__accordion-panel ul li:before {
/* 12420 */     content: "";
/* 12421 */     position: absolute;
/* 12422 */     width: 6px;
/* 12423 */     height: 6px;
/* 12424 */     background: var(--black);
/* 12425 */     border-radius: 18px;
/* 12426 */     left: 0;
/* 12427 */     top: 6px;
/* 12428 */ }
/* 12429 */
/* 12430 */ /* New Css */
/* 12431 */
/* 12432 */ .position-text strong{
/* 12433 */     color: #00000099;
/* 12434 */     font-weight: 400;
/* 12435 */ }
/* 12436 */ .job-position-detail:first-child {
/* 12437 */     padding-left: 0px !important;
/* 12438 */ }
/* 12439 */ .job-position-detail:last-child {
/* 12440 */     border-bottom: 0px solid #ddd;
/* 12441 */     border-right: 0px;
/* 12442 */ }
/* 12443 */
/* 12444 */ .job-position-detail {
/* 12445 */     color: #000000CC;
/* 12446 */     font-weight: 600;
/* 12447 */     padding: 5px 20px;
/* 12448 */     white-space: nowrap;
/* 12449 */     font-size: 24px;
/* 12450 */     line-height: 1.8rem;

/* app.css */

/* 12451 */     border-right: 1px solid #ddd;
/* 12452 */     margin: 0px;
/* 12453 */ }
/* 12454 */ .current-job__accordion--head h3 {
/* 12455 */     margin-bottom: 30px;
/* 12456 */ }
/* 12457 */ .current-job__main .d-flex{
/* 12458 */ 	display:flex;
/* 12459 */ }
/* 12460 */
/* 12461 */
/* 12462 */ /* New Css End*/
/* 12463 */
/* 12464 */ /* @media (min-width: 768px) {
/* 12465 *|     .current-job__accordion--button {
/* 12466 *|         width: 100%;
/* 12467 *|         display: flex;
/* 12468 *|         align-items: end;
/* 12469 *|         justify-content: center;
/* 12470 *|         flex-direction: column;
/* 12471 *|         gap: 45px;
/* 12472 *|     }
/* 12473 *|
/* 12474 *|     .current-job__accordion--head-position li {
/* 12475 *|         margin: 0 25px 0 0;
/* 12476 *|     }
/* 12477 *|
/* 12478 *|     .current-job__heading {
/* 12479 *|         margin: 0 auto 45px;
/* 12480 *|     }
/* 12481 *|
/* 12482 *|     .current-job__accordion-panel p {
/* 12483 *|         font-size: 16px;
/* 12484 *|         line-height: 22px;
/* 12485 *|     }
/* 12486 *|
/* 12487 *|     .current-job__accordion--button .btn {
/* 12488 *|         padding: 10px 25px;
/* 12489 *|         width: 190px;
/* 12490 *|         text-align: center;
/* 12491 *|     }
/* 12492 *|
/* 12493 *|     .current-job__accordion-panel ul li {
/* 12494 *|         font-size: 16px;
/* 12495 *|         line-height: 22px;
/* 12496 *|     }
/* 12497 *| }
/* 12498 *|
/* 12499 *| @media (min-width: 992px) {
/* 12500 *|     .current-job__heading {

/* app.css *|

/* 12501 *|         margin: 0 auto 60px;
/* 12502 *|     }
/* 12503 *|
/* 12504 *|     .current-job__accordion-panel p {
/* 12505 *|         font-size: 18px;
/* 12506 *|         line-height: 24px;
/* 12507 *|     }
/* 12508 *|
/* 12509 *|     .current-job__accordion-panel ul li {
/* 12510 *|         font-size: 18px;
/* 12511 *|         line-height: 24px;
/* 12512 *|     }
/* 12513 *|
/* 12514 *|
/* 12515 *|     .current-job__accordion--button {
/* 12516 *|         width: 100%;
/* 12517 *|     }
/* 12518 *|
/* 12519 *|     .current-job__accordion__text {
/* 12520 *|         font-size: 20px;
/* 12521 *|         margin-bottom: 5px;
/* 12522 *|     }
/* 12523 *|
/* 12524 *|     .current-job__accordion__value {
/* 12525 *|         font-size: 20px;
/* 12526 *|     }
/* 12527 *| }
/* 12528 *|
/* 12529 *| @media (min-width: 1200px) {
/* 12530 *|     .current-job__heading {
/* 12531 *|         margin: 0 auto 75px;
/* 12532 *|     }
/* 12533 *|
/* 12534 *|     .current-job__accordion--button {
/* 12535 *|         width: 100%;
/* 12536 *|         flex-direction: row;
/* 12537 *|         align-items: end;
/* 12538 *|         justify-content: end;
/* 12539 *|     }
/* 12540 *| }
/* 12541 *|
/* 12542 *| @media (min-width: 1440px) {
/* 12543 *|     .current-job__heading {
/* 12544 *|         margin: 0 auto 90px;
/* 12545 *|     }
/* 12546 *|     .current-job__accordion__text {
/* 12547 *|         font-size: 22px;
/* 12548 *|         margin-bottom: 7px;
/* 12549 *|     }
/* 12550 *|     .current-job__accordion__value {

/* app.css *|

/* 12551 *|         font-size: 22px;
/* 12552 *|     }
/* 12553 *| } */
/* 12554 */ @media (max-width: 1536px) {
/* 12555 */     .job-position-detail {
/* 12556 */         font-size: 20px;
/* 12557 */     }
/* 12558 */ }
/* 12559 */
/* 12560 */ @media (max-width: 1280px) {
/* 12561 */     .job-position-detail {
/* 12562 */         font-size: 16px;
/* 12563 */     }
/* 12564 */     .current-job__accordion--button .btn {
/* 12565 */         font-size: 1.2rem;
/* 12566 */         line-height: 1.7rem;
/* 12567 */     }
/* 12568 */ }
/* 12569 */
/* 12570 */ @media (min-width: 768px) and (max-width: 992px) {
/* 12571 */     .current-job__accordion--head h3 {
/* 12572 */         margin-bottom: 15px;
/* 12573 */     }
/* 12574 */     .current-job__accordion {
/* 12575 */         flex-direction: column;
/* 12576 */         padding: 16px;
/* 12577 */     }
/* 12578 */     .current-job__accordion--head {
/* 12579 */         flex: 1;
/* 12580 */         margin-bottom: 10px;
/* 12581 */     }
/* 12582 */     .current-job__accordion--button {
/* 12583 */         width: 100%;
/* 12584 */         display: flex;
/* 12585 */         gap: 15px;
/* 12586 */         align-items: center;
/* 12587 */         justify-content: start;
/* 12588 */         flex-direction: row;
/* 12589 */     }
/* 12590 */ }
/* 12591 */ @media (max-width: 768px) {
/* 12592 */     .job-position-detail {
/* 12593 */         font-size: 14px;
/* 12594 */     }
/* 12595 */     .current-job__accordion--button .apply-btn {
/* 12596 */         margin-right: 0px;
/* 12597 */     }
/* 12598 */     .current-job__accordion--button {
/* 12599 */         width: 100%;
/* 12600 */         display: flex;

/* app.css */

/* 12601 */         gap: 15px;
/* 12602 */         align-items: center;
/* 12603 */         justify-content: start;
/* 12604 */         flex-direction: row;
/* 12605 */     }
/* 12606 */     .current-job__main .d-flex {
/* 12607 */         display: flex;
/* 12608 */         flex-wrap: wrap;
/* 12609 */     }
/* 12610 */     .current-job__accordion--head {
/* 12611 */         flex: 1;
/* 12612 */         margin-bottom: 10px;
/* 12613 */     }
/* 12614 */     .current-job__accordion--button {
/* 12615 */         flex: 0 0;
/* 12616 */     }
/* 12617 */     .current-job__accordion--head h3 {
/* 12618 */         margin-bottom: 10px;
/* 12619 */         font-size: 18px;
/* 12620 */         line-height: 24px;
/* 12621 */     }
/* 12622 */     .current-job__accordion {
/* 12623 */         flex-direction: column;
/* 12624 */         padding: 16px;
/* 12625 */     }
/* 12626 */ }
/* 12627 */ @media (max-width: 640px) {
/* 12628 */     .job-position-detail {
/* 12629 */         width: 100%;
/* 12630 */         padding: 5px 0;
/* 12631 */         border-bottom: 1px solid #ddd;
/* 12632 */         border-right: none;
/* 12633 */         text-align: left;
/* 12634 */     }
/* 12635 */     .current-job__accordion--head {
/* 12636 */         margin-bottom: 10px;
/* 12637 */     }
/* 12638 */     .current-job__accordion--button {
/* 12639 */         width: 100%;
/* 12640 */         display: flex;
/* 12641 */         gap: 15px;
/* 12642 */         align-items: center;
/* 12643 */         justify-content: start;
/* 12644 */         flex-direction: row;
/* 12645 */     }
/* 12646 */ }
/* 12647 */ @media (max-width: 475px) {
/* 12648 */     .current-job__accordion--button .btn {
/* 12649 */         padding: 10px 17px;
/* 12650 */     }

/* app.css */

/* 12651 */ }
/* 12652 */ .career-opportunities {
/* 12653 */     padding: 40px 0;
/* 12654 */ }
/* 12655 */ .career-opportunities__heading {
/* 12656 */     max-width: 1155px;
/* 12657 */     width: 100%;
/* 12658 */     margin: 0 auto 30px;
/* 12659 */     text-align: center;
/* 12660 */ }
/* 12661 */ .career-opportunities__heading h2 {
/* 12662 */     max-width: 850px;
/* 12663 */     width: 100%;
/* 12664 */     margin: 0 auto 20px;
/* 12665 */ }
/* 12666 */ .career-opportunities__heading p {
/* 12667 */     margin: 0;
/* 12668 */ }
/* 12669 */ .career-opportunities__main {
/* 12670 */     display: flex;
/* 12671 */     align-items: center;
/* 12672 */     flex-wrap: wrap;
/* 12673 */     max-width: 1280px;
/* 12674 */     width: 100%;
/* 12675 */     margin: 0 auto;
/* 12676 */ }
/* 12677 */ .career-opportunities__main--inner {
/* 12678 */     max-width: 100%;
/* 12679 */     width: 100%;
/* 12680 */     position: relative;
/* 12681 */     padding-left: 30px;
/* 12682 */     margin-bottom: 30px;
/* 12683 */ }
/* 12684 */ .career-opportunities__main--inner h3 {
/* 12685 */     color: var(--orange);
/* 12686 */     font-size: 80px;
/* 12687 */ }
/* 12688 */ .career-opportunities__main--inner h2 {
/* 12689 */     margin: 0;
/* 12690 */     color: var(--orange);
/* 12691 */ }
/* 12692 */ .career-opportunities__main--inner p {
/* 12693 */     margin: 0;
/* 12694 */ }
/* 12695 */ .career-opportunities__main--inner:before {
/* 12696 */     content: "";
/* 12697 */     position: absolute;
/* 12698 */     width: 8px;
/* 12699 */     height: 100%;
/* 12700 */     background: var(--black);

/* app.css */

/* 12701 */     left: 0;
/* 12702 */     top: 0;
/* 12703 */ }
/* 12704 */
/* 12705 */ @media (min-width: 575px) {
/* 12706 */     .career-opportunities__main--inner {
/* 12707 */         max-width: calc(100% / 3);
/* 12708 */         margin: 0;
/* 12709 */     }
/* 12710 */ }
/* 12711 */
/* 12712 */ @media (min-width: 768px) {
/* 12713 */     .career-opportunities {
/* 12714 */         padding: 60px 0;
/* 12715 */     }
/* 12716 */     .career-opportunities__heading {
/* 12717 */         margin: 0 auto 45px;
/* 12718 */     }
/* 12719 */     .career-opportunities__main--inner {
/* 12720 */         max-width: calc(100% / 3);
/* 12721 */         margin: 0;
/* 12722 */     }
/* 12723 */ }
/* 12724 */
/* 12725 */ @media (min-width: 992px) {
/* 12726 */     .career-opportunities {
/* 12727 */         padding: 80px 0;
/* 12728 */     }
/* 12729 */     .career-opportunities__heading {
/* 12730 */         margin: 0 auto 60px;
/* 12731 */     }
/* 12732 */ }
/* 12733 */
/* 12734 */ @media (min-width: 1200px) {
/* 12735 */     .career-opportunities {
/* 12736 */         padding: 100px 0;
/* 12737 */     }
/* 12738 */     .career-opportunities__heading {
/* 12739 */         margin: 0 auto 75px;
/* 12740 */     }
/* 12741 */ }
/* 12742 */
/* 12743 */ @media (min-width: 1440px) {
/* 12744 */     .career-opportunities {
/* 12745 */         padding: 120px 0;
/* 12746 */     }
/* 12747 */     .career-opportunities__heading {
/* 12748 */         margin: 0 auto 90px;
/* 12749 */     }
/* 12750 */ }

/* app.css */

/* 12751 */ .service-inner-banner {
/* 12752 */     position: relative;
/* 12753 */     display: flex;
/* 12754 */     align-items: center;
/* 12755 */ }
/* 12756 */ .service-inner-banner__bg {
/* 12757 */     position: absolute;
/* 12758 */     width: 100%;
/* 12759 */     height: 100%;
/* 12760 */     object-fit: cover;
/* 12761 */     left: 0;
/* 12762 */     top: 0;
/* 12763 */ }
/* 12764 */ .service-inner-banner__container {
/* 12765 */     padding: 30px 15px;
/* 12766 */ }
/* 12767 */ .service-inner-banner p {
/* 12768 */     color: var(--white);
/* 12769 */     margin: 0 0 20px;
/* 12770 */     text-shadow: 0 0 2px rgb(0 0 0);
/* 12771 */ }
/* 12772 */ .service-inner-banner h1 {
/* 12773 */     margin: 0 0 20px;
/* 12774 */ }
/* 12775 */ .service-inner-banner__img {
/* 12776 */     margin: 0 0 30px;
/* 12777 */ }
/* 12778 */
/* 12779 */ @media (min-width: 768px) {
/* 12780 */     .service-inner-banner__container {
/* 12781 */         padding: 45px 15px;
/* 12782 */     }
/* 12783 */     .service-inner-banner p {
/* 12784 */         margin: 0 0 30px;
/* 12785 */     }
/* 12786 */     .service-inner-banner__img {
/* 12787 */         margin: 0;
/* 12788 */     }
/* 12789 */ }
/* 12790 */
/* 12791 */ @media (min-width: 992px) {
/* 12792 */     .service-inner-banner__container {
/* 12793 */         padding: 60px 15px;
/* 12794 */     }
/* 12795 */     .service-inner-banner p {
/* 12796 */         margin: 0 0 40px;
/* 12797 */     }
/* 12798 */ }
/* 12799 */
/* 12800 */ @media (min-width: 1200px) {

/* app.css */

/* 12801 */     .service-inner-banner__container {
/* 12802 */         padding: 75px 15px;
/* 12803 */     }
/* 12804 */     .service-inner-banner p {
/* 12805 */         margin: 0 0 50px;
/* 12806 */     }
/* 12807 */     .service-inner-banner {
/* 12808 */         min-height: 500px;
/* 12809 */     }
/* 12810 */ }
/* 12811 */
/* 12812 */ @media (min-width: 1440px) {
/* 12813 */     .service-inner-banner__container {
/* 12814 */         padding: 90px 15px;
/* 12815 */     }
/* 12816 */     .service-inner-banner {
/* 12817 */         min-height: 650px;
/* 12818 */     }
/* 12819 */ }
/* 12820 */ .copy-content {
/* 12821 */     padding: 40px 0;
/* 12822 */ }
/* 12823 */ .copy-content.bg_light_orange {
/* 12824 */     background: linear-gradient(245.24deg, rgba(255, 0, 0, 0.05) 0%, rgba(247, 141, 30, 0.05) 100%);
/* 12825 */ }
/* 12826 */ .copy-content p {
/* 12827 */     margin: 0;
/* 12828 */ }
/* 12829 */ .copy-content h2 {
/* 12830 */     margin: 0 0 20px;
/* 12831 */ }
/* 12832 */
/* 12833 */ @media (min-width: 768px) {
/* 12834 */     .copy-content {
/* 12835 */         padding: 60px 0;
/* 12836 */     }
/* 12837 */     .copy-content h2 {
/* 12838 */         margin: 0;
/* 12839 */     }
/* 12840 */ }
/* 12841 */
/* 12842 */ @media (min-width: 992px) {
/* 12843 */     .copy-content {
/* 12844 */         padding: 80px 0;
/* 12845 */     }
/* 12846 */ }
/* 12847 */
/* 12848 */ @media (min-width: 1200px) {
/* 12849 */     .copy-content {
/* 12850 */         padding: 100px 0;

/* app.css */

/* 12851 */     }
/* 12852 */ }
/* 12853 */
/* 12854 */ @media (min-width: 1440px) {
/* 12855 */     .copy-content {
/* 12856 */         padding: 120px 0;
/* 12857 */     }
/* 12858 */ }
/* 12859 */ .design-growth {
/* 12860 */     background: #F370231A;
/* 12861 */     padding: 40px 0 0;
/* 12862 */ }
/* 12863 */ .design-growth__img {
/* 12864 */     width: 100%;
/* 12865 */     height: 300px;
/* 12866 */     background-color: #F370231A;
/* 12867 */     padding: 1px;
/* 12868 */     background-blend-mode: multiply;
/* 12869 */     background-position: center;
/* 12870 */     background-size: cover;
/* 12871 */ }
/* 12872 */ .design-growth__heading {
/* 12873 */     max-width: 1350px;
/* 12874 */     width: 100%;
/* 12875 */     text-align: center;
/* 12876 */     margin: 0 auto 30px;
/* 12877 */ }
/* 12878 */ .design-growth__heading p {
/* 12879 */     max-width: 1210px;
/* 12880 */     width: 100%;
/* 12881 */     margin: 0 auto;
/* 12882 */ }
/* 12883 */
/* 12884 */ @media (min-width: 768px) {
/* 12885 */     .design-growth {
/* 12886 */         padding: 60px 0 0;
/* 12887 */     }
/* 12888 */     .design-growth__heading {
/* 12889 */         margin: 0 auto 45px;
/* 12890 */     }
/* 12891 */     .design-growth__img {
/* 12892 */         height: 400px;
/* 12893 */     }
/* 12894 */ }
/* 12895 */
/* 12896 */ @media (min-width: 992px) {
/* 12897 */     .design-growth {
/* 12898 */         padding: 80px 0 0;
/* 12899 */     }
/* 12900 */     .design-growth__heading {

/* app.css */

/* 12901 */         margin: 0 auto 60px;
/* 12902 */     }
/* 12903 */     .design-growth__img {
/* 12904 */         height: 500px;
/* 12905 */     }
/* 12906 */ }
/* 12907 */
/* 12908 */ @media (min-width: 1200px) {
/* 12909 */     .design-growth {
/* 12910 */         padding: 100px 0 0;
/* 12911 */     }
/* 12912 */     .design-growth__heading {
/* 12913 */         margin: 0 auto 75px;
/* 12914 */     }
/* 12915 */     .design-growth__img {
/* 12916 */         height: 600px;
/* 12917 */     }
/* 12918 */ }
/* 12919 */
/* 12920 */ @media (min-width: 1440px) {
/* 12921 */     .design-growth {
/* 12922 */         padding: 120px 0 0;
/* 12923 */     }
/* 12924 */     .design-growth__heading {
/* 12925 */         margin: 0 auto 90px;
/* 12926 */     }
/* 12927 */     .design-growth__img {
/* 12928 */         height: 700px;
/* 12929 */     }
/* 12930 */ }
/* 12931 */ .streamline {
/* 12932 */     padding: 40px 0;
/* 12933 */ }
/* 12934 */ .streamline__heading {
/* 12935 */     max-width: 1350px;
/* 12936 */     width: 100%;
/* 12937 */     margin: 0 auto 30px;
/* 12938 */     text-align: center;
/* 12939 */ }
/* 12940 */ .streamline__heading p {
/* 12941 */     max-width: 940px;
/* 12942 */     width: 100%;
/* 12943 */     margin: 0 auto;
/* 12944 */ }
/* 12945 */ .streamline__main--grid {
/* 12946 */     border: 2px solid #000000;
/* 12947 */     padding: 20px;
/* 12948 */     position: relative;
/* 12949 */ }
/* 12950 */ .streamline__main {

/* app.css */

/* 12951 */     row-gap: 30px;
/* 12952 */     align-items: stretch;
/* 12953 */ }
/* 12954 */ .streamline__main .streamline__main--col {
/* 12955 */     display: flex;
/* 12956 */ }
/* 12957 */ .streamline__main--grid h3 {
/* 12958 */     color: var(--black);
/* 12959 */ }
/* 12960 */ .streamline__main--grid p {
/* 12961 */     margin: 0;
/* 12962 */ }
/* 12963 */ .streamline__main--grid:before {
/* 12964 */     content: "";
/* 12965 */     position: absolute;
/* 12966 */     top: 0;
/* 12967 */     right: 0;
/* 12968 */     width: 0;
/* 12969 */     height: 0;
/* 12970 */     border-style: solid;
/* 12971 */     border-width: 0 44px 44px 0;
/* 12972 */     border-color: transparent #000 transparent transparent;
/* 12973 */     transition: all 500ms linear;
/* 12974 */ }
/* 12975 */
/* 12976 */ @media (min-width: 768px) {
/* 12977 */     .streamline {
/* 12978 */         padding: 60px 0;
/* 12979 */     }
/* 12980 */     .streamline__heading {
/* 12981 */         margin: 0 auto 45px;
/* 12982 */     }
/* 12983 */     .streamline__main--grid {
/* 12984 */         padding: 26px;
/* 12985 */     }
/* 12986 */ }
/* 12987 */
/* 12988 */ @media (min-width: 992px) {
/* 12989 */     .streamline {
/* 12990 */         padding: 80px 0;
/* 12991 */     }
/* 12992 */     .streamline__heading {
/* 12993 */         margin: 0 auto 60px;
/* 12994 */     }
/* 12995 */     .streamline__main--grid {
/* 12996 */         padding: 32px;
/* 12997 */     }
/* 12998 */ }
/* 12999 */
/* 13000 */ @media (min-width: 1200px) {

/* app.css */

/* 13001 */     .streamline {
/* 13002 */         padding: 100px 0;
/* 13003 */     }
/* 13004 */     .streamline__heading {
/* 13005 */         margin: 0 auto 75px;
/* 13006 */     }
/* 13007 */     .streamline__main--grid {
/* 13008 */         padding: 40px;
/* 13009 */     }
/* 13010 */ }
/* 13011 */
/* 13012 */ @media (min-width: 1440px) {
/* 13013 */     .streamline {
/* 13014 */         padding: 120px 0;
/* 13015 */     }
/* 13016 */     .streamline__heading {
/* 13017 */         margin: 0 auto 90px;
/* 13018 */     }
/* 13019 */ }
/* 13020 */ .service-empowering {
/* 13021 */     padding: 40px 0;
/* 13022 */     background: var(--black);
/* 13023 */ }
/* 13024 */ .service-empowering__heading {
/* 13025 */     max-width: 1215px;
/* 13026 */     width: 100%;
/* 13027 */     margin: 0 auto 30px;
/* 13028 */     text-align: center;
/* 13029 */ }
/* 13030 */ .service-empowering__heading h2 {
/* 13031 */     color: var(--white);
/* 13032 */ }
/* 13033 */ .service-empowering__heading p {
/* 13034 */     color: var(--white);
/* 13035 */     margin: 0;
/* 13036 */ }
/* 13037 */ .service-empowering__main-row:nth-child(odd) {
/* 13038 */     flex-direction: row-reverse;
/* 13039 */ }
/* 13040 */ .service-empowering__main-row {
/* 13041 */     margin-bottom: 45px;
/* 13042 */ }
/* 13043 */ .service-empowering__main-row:last-child {
/* 13044 */     margin-bottom: 0;
/* 13045 */ }
/* 13046 */ .service-empowering__main--cont-icon {
/* 13047 */     margin: 0 0 15px;
/* 13048 */ }
/* 13049 */ .service-empowering__main--cont p {
/* 13050 */     color: var(--white);

/* app.css */

/* 13051 */     margin: 0 0 20px;
/* 13052 */ }
/* 13053 */ .service-empowering.with-back {
/* 13054 */     background: rgba(243, 112, 35, 0.05);
/* 13055 */ }
/* 13056 */ .service-empowering.with-back .service-empowering__heading h2,
/* 13057 */ .service-empowering.with-back .service-empowering__main--cont h3,
/* 13058 */ .service-empowering.with-back .service-empowering__main--cont p {
/* 13059 */     color: var(--black);
/* 13060 */ }
/* 13061 */ .service-empowering.with-back .service-empowering__main--cont .service-empowering__main--cont-btn {
/* 13062 */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 13063 */ }
/* 13064 */ .service_empowering__bg{
/* 13065 */     height: 100%;
/* 13066 */     top: 50%;
/* 13067 */     transform: translateY(-50%);
/* 13068 */     position: absolute;
/* 13069 */     left: 50%;
/* 13070 */     z-index: 0;
/* 13071 */     width: 100vw;
/* 13072 */     display: none;
/* 13073 */     z-index: 0 ;
/* 13074 */ }
/* 13075 */ .service-empowering__main-row:nth-child(odd) .service_empowering__bg{
/* 13076 */     right: 50%;
/* 13077 */     left: auto;
/* 13078 */ }
/* 13079 */ .service-empowering__img{
/* 13080 */     object-fit: cover;
/* 13081 */     width: 100%;
/* 13082 */     height: 100%;
/* 13083 */     z-index: 1;
/* 13084 */     position: relative;
/* 13085 */ }
/* 13086 */ .service-empowering.with-back .service_empowering__bg{
/* 13087 */     background: #F370231A;
/* 13088 */ }
/* 13089 */ .service-empowering.without-back .service_empowering__bg{
/* 13090 */     background: #FFFFFF1A;
/* 13091 */ }
/* 13092 */
/* 13093 */ @media (min-width: 768px) {
/* 13094 */     .service-empowering {
/* 13095 */         padding: 60px 0;
/* 13096 */     }
/* 13097 */     .service-empowering__heading {
/* 13098 */         margin: 0 auto 45px;
/* 13099 */     }
/* 13100 */     .service-empowering__main--cont {

/* app.css */

/* 13101 */         padding-right: 45px;
/* 13102 */     }
/* 13103 */     .service-empowering__main-row:nth-child(odd) .service-empowering__main--cont {
/* 13104 */         padding-left: 45px;
/* 13105 */         padding-right: 0;
/* 13106 */     }
/* 13107 */     .service-empowering__main-row {
/* 13108 */         margin-bottom: 60px;
/* 13109 */     }
/* 13110 */     .service-empowering__main--cont-icon {
/* 13111 */         margin: 0 0 20px;
/* 13112 */     }
/* 13113 */     .service-empowering__main--cont p {
/* 13114 */         margin: 0 0 30px;
/* 13115 */     }
/* 13116 */     .service_empowering__bg{
/* 13117 */         display: block;
/* 13118 */     }
/* 13119 */     .service-empowering__img{
/* 13120 */         margin: 30px 0;
/* 13121 */     }
/* 13122 */ }
/* 13123 */
/* 13124 */ @media (min-width: 992px) {
/* 13125 */     .service-empowering {
/* 13126 */         padding: 80px 0;
/* 13127 */     }
/* 13128 */     .service-empowering__heading {
/* 13129 */         margin: 0 auto 60px;
/* 13130 */     }
/* 13131 */     .service-empowering__main--cont {
/* 13132 */         padding-right: 60px;
/* 13133 */     }
/* 13134 */     .service-empowering__main-row:nth-child(odd) .service-empowering__main--cont {
/* 13135 */         padding-left: 60px;
/* 13136 */     }
/* 13137 */     .service-empowering__main-row {
/* 13138 */         margin-bottom: 75px;
/* 13139 */     }
/* 13140 */     .service-empowering__main--cont-icon {
/* 13141 */         margin: 0 0 25px;
/* 13142 */     }
/* 13143 */     .service-empowering__main--cont p {
/* 13144 */         margin: 0 0 40px;
/* 13145 */     }
/* 13146 */     .service-empowering__img{
/* 13147 */         margin: 60px 0;
/* 13148 */     }
/* 13149 */ }
/* 13150 */

/* app.css */

/* 13151 */ @media (min-width: 1200px) {
/* 13152 */     .service-empowering {
/* 13153 */         padding: 100px 0;
/* 13154 */     }
/* 13155 */     .service-empowering__heading {
/* 13156 */         margin: 0 auto 75px;
/* 13157 */     }
/* 13158 */     .service-empowering__main--cont {
/* 13159 */         padding-right: 75px;
/* 13160 */     }
/* 13161 */     .service-empowering__main-row:nth-child(odd) .service-empowering__main--cont {
/* 13162 */         padding-left: 75px;
/* 13163 */     }
/* 13164 */     .service-empowering__main-row {
/* 13165 */         margin-bottom: 90px;
/* 13166 */     }
/* 13167 */     .service-empowering__main--cont-icon {
/* 13168 */         margin: 0 0 30px;
/* 13169 */     }
/* 13170 */     .service-empowering__main--cont p {
/* 13171 */         margin: 0 0 50px;
/* 13172 */     }
/* 13173 */ }
/* 13174 */
/* 13175 */ @media (min-width: 1440px) {
/* 13176 */     .service-empowering {
/* 13177 */         padding: 120px 0;
/* 13178 */     }
/* 13179 */     .service-empowering__heading {
/* 13180 */         margin: 0 auto 90px;
/* 13181 */     }
/* 13182 */     .service-empowering__main--cont {
/* 13183 */         padding-right: 90px;
/* 13184 */     }
/* 13185 */     .service-empowering__main-row:nth-child(odd) .service-empowering__main--cont {
/* 13186 */         padding-left: 90px;
/* 13187 */     }
/* 13188 */     .service-empowering__main--cont p {
/* 13189 */         margin: 0 0 60px;
/* 13190 */     }
/* 13191 */ }
/* 13192 */
/* 13193 */ .build-unique {
/* 13194 */     padding: 40px 0 0;
/* 13195 */ }
/* 13196 */ .build-unique__heading {
/* 13197 */     max-width: 940px;
/* 13198 */     width: 100%;
/* 13199 */     margin: 0 auto 30px;
/* 13200 */     text-align: center;

/* app.css */

/* 13201 */ }
/* 13202 */ .build-unique__heading p {
/* 13203 */     margin: 0;
/* 13204 */ }
/* 13205 */ .build-unique__img {
/* 13206 */     width: 100%;
/* 13207 */     height: 300px;
/* 13208 */     padding: 1px;
/* 13209 */     background-blend-mode: multiply;
/* 13210 */     background-position: center;
/* 13211 */     background-size: cover;
/* 13212 */ }
/* 13213 */ .build-unique.black-bg {
/* 13214 */     background: var(--black);
/* 13215 */ }
/* 13216 */ .build-unique.black-bg .build-unique__heading h2,
/* 13217 */ .build-unique.black-bg .build-unique__heading p {
/* 13218 */     color: var(--white);
/* 13219 */ }
/* 13220 */
/* 13221 */ @media (min-width: 768px) {
/* 13222 */     .build-unique {
/* 13223 */         padding: 60px 0 0;
/* 13224 */     }
/* 13225 */     .build-unique__img  {
/* 13226 */         height: 400px;
/* 13227 */     }
/* 13228 */     .build-unique__heading {
/* 13229 */         margin: 0 auto 45px;
/* 13230 */     }
/* 13231 */ }
/* 13232 */
/* 13233 */ @media (min-width: 992px) {
/* 13234 */     .build-unique {
/* 13235 */         padding: 80px 0 0;
/* 13236 */     }
/* 13237 */     .build-unique__img  {
/* 13238 */         height: 500px;
/* 13239 */     }
/* 13240 */     .build-unique__heading {
/* 13241 */         margin: 0 auto 60px;
/* 13242 */     }
/* 13243 */ }
/* 13244 */
/* 13245 */ @media (min-width: 1200px) {
/* 13246 */     .build-unique {
/* 13247 */         padding: 100px 0 0;
/* 13248 */     }
/* 13249 */     .build-unique__img  {
/* 13250 */         height: 600px;

/* app.css */

/* 13251 */     }
/* 13252 */     .build-unique__heading {
/* 13253 */         margin: 0 auto 75px;
/* 13254 */     }
/* 13255 */ }
/* 13256 */
/* 13257 */ @media (min-width: 1440px) {
/* 13258 */     .build-unique {
/* 13259 */         padding: 120px 0 0;
/* 13260 */     }
/* 13261 */     .build-unique__img  {
/* 13262 */         height: 700px;
/* 13263 */     }
/* 13264 */     .build-unique__heading {
/* 13265 */         margin: 0 auto 90px;
/* 13266 */     }
/* 13267 */ }
/* 13268 */ .boost-traffic {
/* 13269 */     position: relative;
/* 13270 */ }
/* 13271 */ .boost-traffic__bg {
/* 13272 */     position: absolute;
/* 13273 */     width: 100%;
/* 13274 */     height: 100%;
/* 13275 */     object-fit: cover;
/* 13276 */     left: 0;
/* 13277 */     top: 0;
/* 13278 */ }
/* 13279 */ .boost-traffic__container {
/* 13280 */     padding: 40px 15px;
/* 13281 */ }
/* 13282 */ .boost-traffic h2 {
/* 13283 */     color: var(--white);
/* 13284 */ }
/* 13285 */ .boost-traffic p {
/* 13286 */     margin: 0 0 40px;
/* 13287 */     color: var(--white);
/* 13288 */ }
/* 13289 */ .boost-traffic ul {
/* 13290 */     margin: 0;
/* 13291 */ }
/* 13292 */ .boost-traffic ul li {
/* 13293 */     color: var(--white);
/* 13294 */     margin: 0 0 20px;
/* 13295 */     padding-left: 30px;
/* 13296 */     position: relative;
/* 13297 */ }
/* 13298 */ .boost-traffic ul li:last-child {
/* 13299 */     margin: 0;
/* 13300 */ }

/* app.css */

/* 13301 */ .boost-traffic ul li:before {
/* 13302 */     content: "";
/* 13303 */     position: absolute;
/* 13304 */     background-image: url("/wp-content/themes/brainstream/images/rectangle-icon.svg");
/* 13305 */     height: 16px;
/* 13306 */     width: 16px;
/* 13307 */     left: 0;
/* 13308 */     top: 5px;
/* 13309 */     filter: brightness(10);
/* 13310 */ }
/* 13311 */
/* 13312 */
/* 13313 */
/* 13314 */ @media (min-width: 768px) {
/* 13315 */     .boost-traffic__container {
/* 13316 */         padding: 60px 15px;
/* 13317 */     }
/* 13318 */     .boost-traffic ul li {
/* 13319 */         padding-left: 34px;
/* 13320 */     }
/* 13321 */     .boost-traffic ul li:before {
/* 13322 */         height: 20px;
/* 13323 */         width: 20px;
/* 13324 */     }
/* 13325 */
/* 13326 */ }
/* 13327 */
/* 13328 */ @media (min-width: 992px) {
/* 13329 */     .boost-traffic__container {
/* 13330 */         padding: 80px 15px;
/* 13331 */     }
/* 13332 */ }
/* 13333 */
/* 13334 */ @media (min-width: 1200px) {
/* 13335 */     .boost-traffic__container {
/* 13336 */         padding: 100px 15px;
/* 13337 */     }
/* 13338 */     .boost-traffic ul li {
/* 13339 */         font-size: 20px;
/* 13340 */         line-height: 30px;
/* 13341 */     }
/* 13342 */     .boost-traffic ul li:before {
/* 13343 */         height: 23px;
/* 13344 */         width: 23px;
/* 13345 */     }
/* 13346 */ }
/* 13347 */
/* 13348 */ @media (min-width: 1440px) {
/* 13349 */     .boost-traffic__container {
/* 13350 */         padding: 120px 15px;

/* app.css */

/* 13351 */     }
/* 13352 */     .boost-traffic ul li {
/* 13353 */         font-size: 24px;
/* 13354 */         line-height: 34px;
/* 13355 */         padding-left: 40px;
/* 13356 */     }
/* 13357 */     .boost-traffic ul li:before {
/* 13358 */         height: 26px;
/* 13359 */         width: 26px;
/* 13360 */     }
/* 13361 */ }
/* 13362 */ .custom-ecommerce {
/* 13363 */     padding: 40px 0;
/* 13364 */     background: var(--black);
/* 13365 */ }
/* 13366 */ .custom-ecommerce__bg {
/* 13367 */     height: 100%;
/* 13368 */     top: 50%;
/* 13369 */     transform: translateY(-50%);
/* 13370 */     position: absolute;
/* 13371 */     right: 50%;
/* 13372 */     z-index: 0;
/* 13373 */     width: 100vw;
/* 13374 */     background: rgba(255, 255, 255, 0.1);
/* 13375 */     display: none;
/* 13376 */     z-index: 0  ;
/* 13377 */ }
/* 13378 */ .custom-ecommerce__main.row-reverse .custom-ecommerce__bg {
/* 13379 */     left: 50%;
/* 13380 */     right: auto;
/* 13381 */ }
/* 13382 */ .custom-ecommerce__main--cont h2 {
/* 13383 */     color: var(--white);
/* 13384 */ }
/* 13385 */ .custom-ecommerce__main--cont p {
/* 13386 */     color: var(--white);
/* 13387 */     margin: 0;
/* 13388 */ }
/* 13389 */ .custom-ecommerce__heading {
/* 13390 */     width: 100%;
/* 13391 */     padding: 40px 20px;
/* 13392 */     text-align: center;
/* 13393 */ }
/* 13394 */ .custom-ecommerce__heading h2 {
/* 13395 */     color: var(--white);
/* 13396 */ }
/* 13397 */ .custom-ecommerce__grid--inner {
/* 13398 */     position: relative;
/* 13399 */     padding: 0 18px;
/* 13400 */ }

/* app.css */

/* 13401 */ .custom-ecommerce__grid {
/* 13402 */     align-items: stretch;
/* 13403 */     justify-content: center;
/* 13404 */     row-gap: 50px;
/* 13405 */ }
/* 13406 */ .custom-ecommerce__grid--col {
/* 13407 */     display: flex;
/* 13408 */     position: relative;
/* 13409 */ }
/* 13410 */ .custom-ecommerce__grid--inner img {
/* 13411 */     margin: 0 0 30px;
/* 13412 */ }
/* 13413 */ .custom-ecommerce__grid--col:last-child::before {
/* 13414 */     display: none;
/* 13415 */ }
/* 13416 */ .custom-ecommerce__grid--inner p {
/* 13417 */     color: var(--white);
/* 13418 */     margin: 0;
/* 13419 */ }
/* 13420 */ .custom-ecommerce__main-head h2 {
/* 13421 */     color: var(--white);
/* 13422 */ }
/* 13423 */ .custom-ecommerce__main-head {
/* 13424 */     text-align: center;
/* 13425 */     max-width: 1200px;
/* 13426 */     width: 100%;
/* 13427 */     margin: 0 auto;
/* 13428 */ }
/* 13429 */ .custom-ecommerce__main-head p {
/* 13430 */     color: var(--white);
/* 13431 */     margin: 0 0 30px;
/* 13432 */ }
/* 13433 */ .custom-ecommerce__main--cont ul li {
/* 13434 */     margin: 0 0 20px;
/* 13435 */ }
/* 13436 */ .custom-ecommerce__main--cont ul li:last-child {
/* 13437 */     margin: 0;
/* 13438 */ }
/* 13439 */ .custom-ecommerce__main--cont ul li p {
/* 13440 */     font-size: 14px;
/* 13441 */     line-height: 22px;
/* 13442 */     margin: 0;
/* 13443 */ }
/* 13444 */ .custom-ecommerce__main--cont ul {
/* 13445 */     margin: 0;
/* 13446 */ }
/* 13447 */ .custom-ecommerce .icon {
/* 13448 */     width: 75px;
/* 13449 */     height: 75px;
/* 13450 */ }

/* app.css */

/* 13451 */
/* 13452 */ @media (min-width: 768px) {
/* 13453 */     .custom-ecommerce {
/* 13454 */         padding: 60px 0;
/* 13455 */     }
/* 13456 */     .custom-ecommerce__heading {
/* 13457 */         padding: 60px 40px;
/* 13458 */     }
/* 13459 */     .custom-ecommerce__grid--inner p {
/* 13460 */         font-size: 16px;
/* 13461 */         line-height: 24px;
/* 13462 */     }
/* 13463 */     .custom-ecommerce__main-head p {
/* 13464 */         margin: 0 0 45px;
/* 13465 */     }
/* 13466 */     .custom-ecommerce__main--cont ul li p {
/* 13467 */         font-size: 16px;
/* 13468 */         line-height: 24px;
/* 13469 */     }
/* 13470 */     .custom-ecommerce__main--cont ul li {
/* 13471 */         margin: 0 0 40px;
/* 13472 */     }
/* 13473 */     .custom-ecommerce__bg {
/* 13474 */         display: block;
/* 13475 */     }
/* 13476 */     .custom-ecommerce__main .banner_image{
/* 13477 */         margin: 30px 0;
/* 13478 */         z-index: 1;
/* 13479 */         position: relative;
/* 13480 */     }
/* 13481 */ }
/* 13482 */
/* 13483 */ @media (min-width: 992px) {
/* 13484 */     .custom-ecommerce {
/* 13485 */         padding: 80px 0;
/* 13486 */     }
/* 13487 */     .custom-ecommerce__heading {
/* 13488 */         padding: 80px 60px;
/* 13489 */     }
/* 13490 */     .custom-ecommerce__grid--inner p {
/* 13491 */         font-size: 18px;
/* 13492 */         line-height: 26px;
/* 13493 */     }
/* 13494 */     .custom-ecommerce__main-head p {
/* 13495 */         margin: 0 0 60px;
/* 13496 */     }
/* 13497 */     .custom-ecommerce__main--cont ul li p {
/* 13498 */         font-size: 18px;
/* 13499 */         line-height: 26px;
/* 13500 */     }

/* app.css */

/* 13501 */     .custom-ecommerce__main--cont ul li {
/* 13502 */         margin: 0 0 60px;
/* 13503 */     }
/* 13504 */     .custom-ecommerce__grid--col:before {
/* 13505 */         content: "";
/* 13506 */         position: absolute;
/* 13507 */         width: 2px;
/* 13508 */         height: 100%;
/* 13509 */         background: #FFFFFF1A;
/* 13510 */         right: 0;
/* 13511 */     }
/* 13512 */ }
/* 13513 */
/* 13514 */ @media (min-width: 1200px) {
/* 13515 */
/* 13516 */     .custom-ecommerce {
/* 13517 */         padding: 100px 0;
/* 13518 */     }
/* 13519 */     .custom-ecommerce__heading {
/* 13520 */         padding: 100px 80px;
/* 13521 */     }
/* 13522 */     .custom-ecommerce__main-head p {
/* 13523 */         margin: 0 0 75px;
/* 13524 */     }
/* 13525 */     .custom-ecommerce__main .banner_image{
/* 13526 */         margin: 60px 0;
/* 13527 */     }
/* 13528 */ }
/* 13529 */
/* 13530 */ @media (min-width: 1440px) {
/* 13531 */     .custom-ecommerce {
/* 13532 */         padding: 120px 0;
/* 13533 */     }
/* 13534 */     .custom-ecommerce__heading {
/* 13535 */         padding: 120px 100p 50px 100px;
/* 13536 */     }
/* 13537 */     .custom-ecommerce__main-head p {
/* 13538 */         margin: 0 0 90px;
/* 13539 */     }
/* 13540 */ }
/* 13541 */ .empowering-business.border_black .empowering-business__main--grid{
/* 13542 */     border: 2px solid var(--black);
/* 13543 */ }
/* 13544 */
/* 13545 */ .empowering-business {
/* 13546 */     padding: 40px 0;
/* 13547 */ }
/* 13548 */ .empowering-business__heading {
/* 13549 */     max-width: 1345px;
/* 13550 */     width: 100%;

/* app.css */

/* 13551 */     margin: 0 auto 30px;
/* 13552 */     text-align: center;
/* 13553 */ }
/* 13554 */ .empowering-business__heading p {
/* 13555 */     max-width: 1188px;
/* 13556 */     width: 100%;
/* 13557 */     margin: 0 auto;
/* 13558 */ }
/* 13559 */ .empowering-business__main {
/* 13560 */     display: flex;
/* 13561 */     align-items: stretch;
/* 13562 */     gap: 40px;
/* 13563 */     flex-wrap: wrap;
/* 13564 */ }
/* 13565 */ .empowering-business__main--grid {
/* 13566 */     max-width: 100%;
/* 13567 */     width: 100%;
/* 13568 */     padding: 20px;
/* 13569 */     border: 2px solid var(--orange);
/* 13570 */ }
/* 13571 */ .empowering-business__main--grid img {
/* 13572 */     filter: brightness(0);
/* 13573 */     margin: 0 0 30px;
/* 13574 */ }
/* 13575 */ .empowering-business__main--grid h3 {
/* 13576 */     color: var(--black);
/* 13577 */ }
/* 13578 */ .empowering-business__main--grid p {
/* 13579 */     font-size: 18px;
/* 13580 */     line-height: 26px;
/* 13581 */     margin: 0;
/* 13582 */ }
/* 13583 */
/* 13584 */ @media (min-width: 575px) {
/* 13585 */     .empowering-business__main--grid {
/* 13586 */         max-width: calc((100% / 2) - 15px);
/* 13587 */     }
/* 13588 */     .empowering-business__main {
/* 13589 */         gap: 30px;
/* 13590 */     }
/* 13591 */ }
/* 13592 */
/* 13593 */ @media (min-width: 768px) {
/* 13594 */     .empowering-business {
/* 13595 */         padding: 60px 0;
/* 13596 */     }
/* 13597 */     .empowering-business__heading {
/* 13598 */         margin: 0 auto 45px;
/* 13599 */     }
/* 13600 */     .empowering-business__main--grid {

/* app.css */

/* 13601 */         max-width: calc((100% / 2) - 20px);
/* 13602 */         padding: 30px;
/* 13603 */     }
/* 13604 */     .empowering-business__main {
/* 13605 */         gap: 40px;
/* 13606 */     }
/* 13607 */ }
/* 13608 */
/* 13609 */ @media (min-width: 992px) {
/* 13610 */     .empowering-business {
/* 13611 */         padding: 80px 0;
/* 13612 */     }
/* 13613 */     .empowering-business__heading {
/* 13614 */         margin: 0 auto 60px;
/* 13615 */     }
/* 13616 */ }
/* 13617 */
/* 13618 */ @media (min-width: 1200px) {
/* 13619 */     .empowering-business {
/* 13620 */         padding: 100px 0;
/* 13621 */     }
/* 13622 */     .empowering-business__heading {
/* 13623 */         margin: 0 auto 75px;
/* 13624 */     }
/* 13625 */     .empowering-business__main--grid {
/* 13626 */         max-width: calc((100% / 3) - 27px);
/* 13627 */         padding: 40px;
/* 13628 */     }
/* 13629 */ }
/* 13630 */
/* 13631 */ @media (min-width: 1440px) {
/* 13632 */     .empowering-business {
/* 13633 */         padding: 120px 0;
/* 13634 */     }
/* 13635 */     .empowering-business__heading {
/* 13636 */         margin: 0 auto 90px;
/* 13637 */     }
/* 13638 */ }
/* 13639 */ .application-list + .agile-process .agile-process__container {
/* 13640 */     padding-top: 30px;
/* 13641 */ }
/* 13642 */
/* 13643 */ .agile-process {
/* 13644 */     padding: 0 0 40px;
/* 13645 */     background: var(--black);
/* 13646 */ }
/* 13647 */ .agile-process > img {
/* 13648 */     margin: 0 auto;
/* 13649 */ }
/* 13650 */ .agile-process__container {

/* app.css */

/* 13651 */     padding-top: 40px;
/* 13652 */ }
/* 13653 */ .agile-process__heading h2 {
/* 13654 */     color: var(--white);
/* 13655 */ }
/* 13656 */ .agile-process__heading {
/* 13657 */     text-align: center;
/* 13658 */     margin: 0 auto 30px;
/* 13659 */ }
/* 13660 */ .agile-process__heading p {
/* 13661 */     max-width: 1080px;
/* 13662 */     width: 100%;
/* 13663 */     margin: 0 auto;
/* 13664 */     color: var(--white);
/* 13665 */ }
/* 13666 */ .agile-process__main--grid {
/* 13667 */     position: relative;
/* 13668 */ }
/* 13669 */ .agile-process__main--grid::before {
/* 13670 */     content: "";
/* 13671 */     position: absolute;
/* 13672 */     width: 6px;
/* 13673 */     height: 100%;
/* 13674 */     background: var(--orange);
/* 13675 */     left: 6px;
/* 13676 */ }
/* 13677 */ .agile-process__main--grid-inner {
/* 13678 */     padding: 0 15px;
/* 13679 */ }
/* 13680 */ .agile-process__main--grid-inner h2 {
/* 13681 */     font-size: 26px;
/* 13682 */     line-height: 28px;
/* 13683 */     color: var(--orange);
/* 13684 */     margin-bottom: 12px;
/* 13685 */ }
/* 13686 */ .agile-process__main--grid-inner p {
/* 13687 */     color: var(--white);
/* 13688 */     font-size: 14px;
/* 13689 */     line-height: 20px;
/* 13690 */     margin: 0;
/* 13691 */ }
/* 13692 */ .agile-process__main--grid-inner h3 {
/* 13693 */     margin-bottom: 12px;
/* 13694 */ }
/* 13695 */ .agile-process__main {
/* 13696 */     row-gap: 30px;
/* 13697 */ }
/* 13698 */
/* 13699 */ @media (min-width: 768px) {
/* 13700 */     .agile-process {

/* app.css */

/* 13701 */         padding: 0 0 60px;
/* 13702 */     }
/* 13703 */     .agile-process__container {
/* 13704 */         padding-top: 60px;
/* 13705 */     }
/* 13706 */     .agile-process__heading {
/* 13707 */         margin: 0 auto 45px;
/* 13708 */     }
/* 13709 */     .agile-process__main--grid-inner h2 {
/* 13710 */         font-size: 30px;
/* 13711 */         line-height: 32px;
/* 13712 */     }
/* 13713 */     .agile-process__main--grid-inner p {
/* 13714 */         font-size: 16px;
/* 13715 */         line-height: 22px;
/* 13716 */     }
/* 13717 */ }
/* 13718 */
/* 13719 */ @media (min-width: 992px) {
/* 13720 */     .agile-process {
/* 13721 */         padding: 0 0 80px;
/* 13722 */     }
/* 13723 */     .agile-process__container {
/* 13724 */         padding-top: 80px;
/* 13725 */     }
/* 13726 */     .agile-process__heading {
/* 13727 */         margin: 0 auto 60px;
/* 13728 */     }
/* 13729 */     .agile-process__main--grid-inner h2 {
/* 13730 */         font-size: 34px;
/* 13731 */         line-height: 36px;
/* 13732 */     }
/* 13733 */     .agile-process__main--grid-inner p {
/* 13734 */         font-size: 18px;
/* 13735 */         line-height: 24px;
/* 13736 */     }
/* 13737 */ }
/* 13738 */
/* 13739 */ @media (min-width: 1200px) {
/* 13740 */     .agile-process {
/* 13741 */         padding: 0 0 100px;
/* 13742 */     }
/* 13743 */     .agile-process__container {
/* 13744 */         padding-top: 100px;
/* 13745 */     }
/* 13746 */     .agile-process__heading {
/* 13747 */         margin: 0 auto 75px;
/* 13748 */     }
/* 13749 */     .agile-process__main--grid-inner h2 {
/* 13750 */         font-size: 42px;

/* app.css */

/* 13751 */         line-height: 44px;
/* 13752 */     }
/* 13753 */     .agile-process__main--grid-inner h2 {
/* 13754 */         font-size: 38px;
/* 13755 */         line-height: 40px;
/* 13756 */     }
/* 13757 */     .agile-process__main--grid::before {
/* 13758 */         left: 0;
/* 13759 */     }
/* 13760 */ }
/* 13761 */
/* 13762 */ @media (min-width: 1440px) {
/* 13763 */     .agile-process {
/* 13764 */         padding: 0 0 120px;
/* 13765 */     }
/* 13766 */     .agile-process__container {
/* 13767 */         padding-top: 120px;
/* 13768 */     }
/* 13769 */     .agile-process__heading {
/* 13770 */         margin: 0 auto 90px;
/* 13771 */     }
/* 13772 */     .agile-process__main--grid-inner h2 {
/* 13773 */         font-size: 42px;
/* 13774 */         line-height: 44px;
/* 13775 */     }
/* 13776 */ }
/* 13777 */ /* Reset padding for adjacent .crm-business */
/* 13778 */ .make-sure + .crm-business {
/* 13779 */     padding-top: 0;
/* 13780 */ }
/* 13781 */
/* 13782 */ /* Base styles */
/* 13783 */ .crm-business {
/* 13784 */     padding: 40px 0;
/* 13785 */     background: var(--black);
/* 13786 */ }
/* 13787 */
/* 13788 */ .crm-business__heading {
/* 13789 */     margin: 0 auto 30px;
/* 13790 */     text-align: center;
/* 13791 */ }
/* 13792 */
/* 13793 */ .crm-business__heading h2 {
/* 13794 */     color: var(--white);
/* 13795 */ }
/* 13796 */
/* 13797 */ .crm-business__heading p {
/* 13798 */     max-width: 1210px;
/* 13799 */     width: 100%;
/* 13800 */     margin: 0 auto;

/* app.css */

/* 13801 */     color: var(--white);
/* 13802 */ }
/* 13803 */
/* 13804 */ /* Main grid and grid item styles */
/* 13805 */ .crm-business__main {
/* 13806 */     display: flex;
/* 13807 */     flex-wrap: wrap;
/* 13808 */     align-items: stretch;
/* 13809 */     row-gap: 30px;
/* 13810 */     justify-content: center;
/* 13811 */ }
/* 13812 */
/* 13813 */ .crm-business__main .crm-business__main--grid {
/* 13814 */     display: flex;
/* 13815 */ }
/* 13816 */
/* 13817 */ .crm-business__main--grid-inner {
/* 13818 */     position: relative;
/* 13819 */     padding: 20px;
/* 13820 */     border: 2px solid var(--white);
/* 13821 */     margin: 0;
/* 13822 */     transition: transform 300ms ease, border-color 300ms ease;
/* 13823 */ }
/* 13824 */
/* 13825 */ .crm-business__main--grid-inner:before {
/* 13826 */     content: "";
/* 13827 */     position: absolute;
/* 13828 */     top: 0;
/* 13829 */     right: 0;
/* 13830 */     width: 0;
/* 13831 */     height: 0;
/* 13832 */     border-style: solid;
/* 13833 */     border-width: 0 22px 22px 0;
/* 13834 */     border-color: transparent var(--white) transparent transparent;
/* 13835 */     transition: all 500ms linear;
/* 13836 */ }
/* 13837 */
/* 13838 */ .crm-business__main--grid-inner:hover {
/* 13839 */     transform: translateY(-10px);
/* 13840 */     border-color: var(--primary-color); /* Adjust to a theme color if desired */
/* 13841 */ }
/* 13842 */
/* 13843 */ .crm-business__main--grid-inner:hover:before {
/* 13844 */     border-color: transparent var(--white) transparent transparent;
/* 13845 */ }
/* 13846 */
/* 13847 */ .crm-business__main--grid-inner p {
/* 13848 */     color: #FFFFFFCC;
/* 13849 */     font-size: 18px;
/* 13850 */     line-height: 24px;

/* app.css */

/* 13851 */ }
/* 13852 */
/* 13853 */ /* Responsive styles */
/* 13854 */ @media (min-width: 768px) {
/* 13855 */     .crm-business {
/* 13856 */         padding: 60px 0;
/* 13857 */     }
/* 13858 */     .crm-business__heading {
/* 13859 */         margin: 0 auto 45px;
/* 13860 */     }
/* 13861 */     .crm-business__main--grid-inner {
/* 13862 */         padding: 30px;
/* 13863 */     }
/* 13864 */     .crm-business__main--grid-inner:before {
/* 13865 */         border-width: 0 44px 44px 0;
/* 13866 */     }
/* 13867 */ }
/* 13868 */
/* 13869 */ @media (min-width: 992px) {
/* 13870 */     .crm-business {
/* 13871 */         padding: 80px 0;
/* 13872 */     }
/* 13873 */     .crm-business__heading {
/* 13874 */         margin: 0 auto 60px;
/* 13875 */     }
/* 13876 */     .crm-business__main--grid-inner {
/* 13877 */         padding: 40px;
/* 13878 */     }
/* 13879 */ }
/* 13880 */
/* 13881 */ @media (min-width: 1200px) {
/* 13882 */     .crm-business {
/* 13883 */         padding: 100px 0;
/* 13884 */     }
/* 13885 */     .crm-business__heading {
/* 13886 */         margin: 0 auto 75px;
/* 13887 */     }
/* 13888 */     .crm-business__main--grid-inner {
/* 13889 */         padding: 30px;
/* 13890 */     }
/* 13891 */ }
/* 13892 */
/* 13893 */ @media (min-width: 1440px) {
/* 13894 */     .crm-business {
/* 13895 */         padding: 120px 0;
/* 13896 */     }
/* 13897 */     .crm-business__heading {
/* 13898 */         margin: 0 auto 90px;
/* 13899 */     }
/* 13900 */     .crm-business__main--grid-inner {

/* app.css */

/* 13901 */         padding: 40px;
/* 13902 */     }
/* 13903 */ }
/* 13904 */
/* 13905 */ .our-expertise {
/* 13906 */     background: linear-gradient(245.24deg, rgba(255, 0, 0, 0.05) 0%, rgba(247, 141, 30, 0.05) 100%);
/* 13907 */     padding: 40px 0;
/* 13908 */ }
/* 13909 */ .our-expertise__heading {
/* 13910 */     max-width: 1040px;
/* 13911 */     width: 100%;
/* 13912 */     text-align: center;
/* 13913 */     margin: 0 auto 30px;
/* 13914 */ }
/* 13915 */ .our-expertise__main {
/* 13916 */     display: flex;
/* 13917 */     flex-wrap: wrap;
/* 13918 */     gap: 30px;
/* 13919 */     margin: 0;
/* 13920 */ }
/* 13921 */ .our-expertise__main li {
/* 13922 */     max-width: 100%;
/* 13923 */     width: 100%;
/* 13924 */     font-size: 16px;
/* 13925 */     line-height: 22px;
/* 13926 */     margin: 0;
/* 13927 */     padding-left: 42px;
/* 13928 */     position: relative;
/* 13929 */     color: var(--black);
/* 13930 */ }
/* 13931 */ .our-expertise__main li:before {
/* 13932 */     content: "";
/* 13933 */     position: absolute;
/* 13934 */     width: 26px;
/* 13935 */     height: 26px;
/* 13936 */     left: 0;
/* 13937 */     top: 5px;
/* 13938 */     background: url("/wp-content/uploads/2024/07/rectangle-icon.svg");
/* 13939 */ }
/* 13940 */
/* 13941 */ @media (min-width: 575px) {
/* 13942 */     .our-expertise__main li {
/* 13943 */         max-width: calc(50% - 20px);
/* 13944 */     }
/* 13945 */ }
/* 13946 */
/* 13947 */ @media (min-width: 768px) {
/* 13948 */     .our-expertise {
/* 13949 */         padding: 60px 0;
/* 13950 */     }

/* app.css */

/* 13951 */     .our-expertise__heading {
/* 13952 */         margin: 0 auto 45px;
/* 13953 */     }
/* 13954 */     .our-expertise__main li {
/* 13955 */
/* 13956 */         font-size: 18px;
/* 13957 */         line-height: 24px;
/* 13958 */     }
/* 13959 */     .our-expertise__main {
/* 13960 */         gap: 40px;
/* 13961 */     }
/* 13962 */ }
/* 13963 */
/* 13964 */ @media (min-width: 992px) {
/* 13965 */     .our-expertise {
/* 13966 */         padding: 80px 0;
/* 13967 */     }
/* 13968 */     .our-expertise__heading {
/* 13969 */         margin: 0 auto 60px;
/* 13970 */     }
/* 13971 */     .our-expertise__main {
/* 13972 */         gap: 50px;
/* 13973 */     }
/* 13974 */     .our-expertise__main li {
/* 13975 */         font-size: 20px;
/* 13976 */         line-height: 26px;
/* 13977 */         max-width: calc(33.333% - 40px);
/* 13978 */     }
/* 13979 */ }
/* 13980 */
/* 13981 */ @media (min-width: 1200px) {
/* 13982 */     .our-expertise {
/* 13983 */         padding: 100px 0;
/* 13984 */     }
/* 13985 */     .our-expertise__heading {
/* 13986 */         margin: 0 auto 75px;
/* 13987 */     }
/* 13988 */     .our-expertise__main {
/* 13989 */         gap: 60px;
/* 13990 */     }
/* 13991 */     .our-expertise__main li {
/* 13992 */         font-size: 22px;
/* 13993 */         line-height: 28px;
/* 13994 */     }
/* 13995 */ }
/* 13996 */
/* 13997 */ @media (min-width: 1440px) {
/* 13998 */     .our-expertise {
/* 13999 */         padding: 120px 0;
/* 14000 */     }

/* app.css */

/* 14001 */     .our-expertise__heading {
/* 14002 */         margin: 0 auto 90px;
/* 14003 */     }
/* 14004 */     .our-expertise__main li {
/* 14005 */         font-size: 24px;
/* 14006 */         line-height: 30px;
/* 14007 */     }
/* 14008 */ }
/* 14009 */ .crm-business + .service-list {
/* 14010 */     padding-top: 0;
/* 14011 */ }
/* 14012 */
/* 14013 */ .service-list {
/* 14014 */     padding: 40px 0;
/* 14015 */     background: var(--black);
/* 14016 */ }
/* 14017 */ .service-list__heading h2 {
/* 14018 */     color: var(--white);
/* 14019 */ }
/* 14020 */ .service-list__heading p {
/* 14021 */     max-width: 1210px;
/* 14022 */     width: 100%;
/* 14023 */     margin: 0 auto;
/* 14024 */     color: var(--white);
/* 14025 */ }
/* 14026 */ .service-list__heading {
/* 14027 */     text-align: center;
/* 14028 */     margin: 0 0 30px;
/* 14029 */ }
/* 14030 */ .service-list__main--cont ul li {
/* 14031 */     color: var(--white);
/* 14032 */     margin: 0 0 15px;
/* 14033 */     position: relative;
/* 14034 */     padding-left: 20px;
/* 14035 */ }
/* 14036 */ .service-list__main--cont ul li:last-child {
/* 14037 */     margin: 0;
/* 14038 */ }
/* 14039 */ .service-list__main--cont ul li:before {
/* 14040 */     content: "";
/* 14041 */     position: absolute;
/* 14042 */     top: 15px;
/* 14043 */     left: 0;
/* 14044 */     height: 6px;
/* 14045 */     width: 6px;
/* 14046 */     background: var(--white);
/* 14047 */     border-radius: 20px;
/* 14048 */ }
/* 14049 */ .service-list__bg {
/* 14050 */     height: 100%;

/* app.css */

/* 14051 */     top: 50%;
/* 14052 */     transform: translateY(-50%);
/* 14053 */     position: absolute;
/* 14054 */     right: 50%;
/* 14055 */     z-index: 0;
/* 14056 */     width: 100vw;
/* 14057 */     background: rgba(255, 255, 255, 0.1);
/* 14058 */     display: none;
/* 14059 */     z-index: 0  ;
/* 14060 */ }
/* 14061 */ .service-list__main img{
/* 14062 */     object-fit: cover;
/* 14063 */     width: 100%;
/* 14064 */     height: 100%;
/* 14065 */     z-index: 1;
/* 14066 */     position: relative;
/* 14067 */ }
/* 14068 */
/* 14069 */
/* 14070 */ @media (min-width: 768px) {
/* 14071 */     .service-list {
/* 14072 */         padding: 60px 0;
/* 14073 */     }
/* 14074 */     .service-list__heading {
/* 14075 */         margin: 0 0 45px;
/* 14076 */     }
/* 14077 */     .service-list__main img {
/* 14078 */         margin: 30px 0;
/* 14079 */     }
/* 14080 */     .service-list__bg {
/* 14081 */         display: block;
/* 14082 */     }
/* 14083 */ }
/* 14084 */
/* 14085 */ @media (min-width: 992px) {
/* 14086 */     .service-list {
/* 14087 */         padding: 80px 0;
/* 14088 */     }
/* 14089 */     .service-list__heading {
/* 14090 */         margin: 0 0 60px;
/* 14091 */     }
/* 14092 */     .service-list__main--cont ul li {
/* 14093 */         font-size: 18px;
/* 14094 */         line-height: 26px;
/* 14095 */         color: var(--white);
/* 14096 */         margin: 0 0 20px;
/* 14097 */         position: relative;
/* 14098 */         padding-left: 20px;
/* 14099 */     }
/* 14100 */     .service-list__main img {

/* app.css */

/* 14101 */         margin: 60px 0;
/* 14102 */     }
/* 14103 */ }
/* 14104 */
/* 14105 */ @media (min-width: 1200px) {
/* 14106 */     .service-list {
/* 14107 */         padding: 100px 0;
/* 14108 */     }
/* 14109 */     .service-list__heading {
/* 14110 */         margin: 0 0 75px;
/* 14111 */     }
/* 14112 */     .service-list__main--cont ul li {
/* 14113 */         font-size: 22px;
/* 14114 */         line-height: 32px;
/* 14115 */     }
/* 14116 */ }
/* 14117 */
/* 14118 */ @media (min-width: 1440px) {
/* 14119 */     .service-list {
/* 14120 */         padding: 120px 0;
/* 14121 */     }
/* 14122 */     .service-list__heading {
/* 14123 */         margin: 0 0 90px;
/* 14124 */     }
/* 14125 */     .service-list__main--cont ul li {
/* 14126 */         font-size: 26px;
/* 14127 */         line-height: 38px;
/* 14128 */     }
/* 14129 */ }
/* 14130 */ .what-we-do {
/* 14131 */     padding: 40px 0;
/* 14132 */ }
/* 14133 */ .what-we-do__heading {
/* 14134 */     text-align: center;
/* 14135 */     margin: 0 0 30px;
/* 14136 */ }
/* 14137 */ .what-we-do__main {
/* 14138 */     display: flex;
/* 14139 */     align-items: stretch;
/* 14140 */     gap: 30px;
/* 14141 */     flex-wrap: wrap;
/* 14142 */ }
/* 14143 */ .what-we-do__main--inner {
/* 14144 */     max-width: 100%;
/* 14145 */     width: 100%;
/* 14146 */ }
/* 14147 */ .what-we-do__main--inner img {
/* 14148 */     max-width: 100px;
/* 14149 */     height: 100px;
/* 14150 */     width: 100%;

/* app.css */

/* 14151 */     margin: 0 0 20px;
/* 14152 */ }
/* 14153 */ .what-we-do__main--inner h3 {
/* 14154 */     color: var(--black);
/* 14155 */     margin: 0 0 10px;
/* 14156 */ }
/* 14157 */ .what-we-do__main--inner p {
/* 14158 */     font-size: 14px;
/* 14159 */     line-height: 22px;
/* 14160 */     margin: 0;
/* 14161 */ }
/* 14162 */
/* 14163 */ @media (min-width: 575px) {
/* 14164 */     .what-we-do__main--inner {
/* 14165 */         max-width: calc((100% / 2) - 20px);
/* 14166 */     }
/* 14167 */     .what-we-do__main {
/* 14168 */         gap: 40px;
/* 14169 */     }
/* 14170 */ }
/* 14171 */
/* 14172 */ @media (min-width: 768px) {
/* 14173 */     .what-we-do {
/* 14174 */         padding: 60px 0;
/* 14175 */     }
/* 14176 */     .what-we-do__heading {
/* 14177 */         margin: 0 0 45px;
/* 14178 */     }
/* 14179 */     .what-we-do__main--inner p {
/* 14180 */         font-size: 16px;
/* 14181 */         line-height: 24px;
/* 14182 */     }
/* 14183 */     .what-we-do__main--inner {
/* 14184 */         max-width: calc((100% / 2) - 30px);
/* 14185 */     }
/* 14186 */     .what-we-do__main {
/* 14187 */         gap: 60px;
/* 14188 */     }
/* 14189 */ }
/* 14190 */
/* 14191 */ @media (min-width: 992px) {
/* 14192 */     .what-we-do {
/* 14193 */         padding: 80px 0;
/* 14194 */     }
/* 14195 */     .what-we-do__heading {
/* 14196 */         margin: 0 0 60px;
/* 14197 */     }
/* 14198 */     .what-we-do__main--inner p {
/* 14199 */         font-size: 18px;
/* 14200 */         line-height: 26px;

/* app.css */

/* 14201 */     }
/* 14202 */
/* 14203 */ }
/* 14204 */
/* 14205 */ @media (min-width: 1200px) {
/* 14206 */     .what-we-do {
/* 14207 */         padding: 100px 0;
/* 14208 */     }
/* 14209 */     .what-we-do__heading {
/* 14210 */         margin: 0 0 75px;
/* 14211 */     }
/* 14212 */     .what-we-do__main--inner {
/* 14213 */         max-width: calc((100% / 3) - 60px);
/* 14214 */         width: 100%;
/* 14215 */     }
/* 14216 */     .what-we-do__main {
/* 14217 */         gap: 90px;
/* 14218 */     }
/* 14219 */ }
/* 14220 */
/* 14221 */ @media (min-width: 1440px) {
/* 14222 */     .what-we-do {
/* 14223 */         padding: 120px 0;
/* 14224 */     }
/* 14225 */     .what-we-do__heading {
/* 14226 */         margin: 0 0 90px;
/* 14227 */     }
/* 14228 */ }
/* 14229 */ .application-list {
/* 14230 */     padding: 30px 0;
/* 14231 */     background: var(--black);
/* 14232 */ }
/* 14233 */ .application-list__grid {
/* 14234 */     margin-top: 30px;
/* 14235 */ }
/* 14236 */ .application-list__grid--inner .application-list__bg {
/* 14237 */     height: 100%;
/* 14238 */     top: 0;
/* 14239 */     position: absolute;
/* 14240 */     left: 50%;
/* 14241 */     width: 100%;
/* 14242 */     background: rgba(255, 255, 255, 0.1);
/* 14243 */     display: none;
/* 14244 */     z-index: 0;
/* 14245 */ }
/* 14246 */ .application-list__grid--inner img {
/* 14247 */     width: 100%;
/* 14248 */     height: 100%;
/* 14249 */     object-fit: cover;
/* 14250 */     padding: 30px 0;

/* app.css */

/* 14251 */     z-index: 1;
/* 14252 */     position: relative;
/* 14253 */ }
/* 14254 */ .application-list.with-back .application-list__bg {
/* 14255 */     background: rgba(243, 112, 35, 0.1);
/* 14256 */ }
/* 14257 */ .application-list__cont h2 {
/* 14258 */     color: var(--white);
/* 14259 */ }
/* 14260 */ .application-list__cont p {
/* 14261 */     color: var(--white);
/* 14262 */     margin: 0 0 38px;
/* 14263 */ }
/* 14264 */ .application-list__cont ul {
/* 14265 */     display: flex;
/* 14266 */     align-items: start;
/* 14267 */     justify-content: space-between;
/* 14268 */     flex-wrap: wrap;
/* 14269 */     margin: 0 0 20px;
/* 14270 */ }
/* 14271 */ .application-list__cont ul li {
/* 14272 */     color: var(--white);
/* 14273 */     padding-left: 42px;
/* 14274 */     font-size: 18px;
/* 14275 */     line-height: 28px;
/* 14276 */     font-weight: 500;
/* 14277 */     max-width: 100%;
/* 14278 */     width: 100%;
/* 14279 */     position: relative;
/* 14280 */     margin: 0 0 20px;
/* 14281 */ }
/* 14282 */ .application-list__cont ul li:last-child {
/* 14283 */     margin: 0;
/* 14284 */ }
/* 14285 */ .application-list__cont ul li:before {
/* 14286 */     content: "";
/* 14287 */     background: url("/wp-content/themes/brainstream/images/rectangle-icon.svg");
/* 14288 */     height: 26px;
/* 14289 */     width: 26px;
/* 14290 */     position: absolute;
/* 14291 */     left: 0;
/* 14292 */     top: 5px;
/* 14293 */ }
/* 14294 */ .application-list.with-back {
/* 14295 */     background: var(--white);
/* 14296 */ }
/* 14297 */ .application-list.with-back .application-list__cont h2,
/* 14298 */ .application-list.with-back .application-list__cont p,
/* 14299 */ .application-list.with-back .application-list__cont ul li {
/* 14300 */     color: var(--black);

/* app.css */

/* 14301 */ }
/* 14302 */ .application-list.with-back .application-list__cont .application-list__btn {
/* 14303 */     box-shadow: 0px 0px 10px 0px rgba(243, 112, 35, 0.1);
/* 14304 */ }
/* 14305 */
/* 14306 */
/* 14307 */ @media (min-width: 768px) {
/* 14308 */     .application-list__grid {
/* 14309 */         min-height: 300px;
/* 14310 */         margin-top: 0;
/* 14311 */     }
/* 14312 */     .application-list__grid--inner {
/* 14313 */         position: absolute;
/* 14314 */         width: calc(50vw - 5vw);
/* 14315 */         left: 5vw;
/* 14316 */         height: 100%;
/* 14317 */     }
/* 14318 */     .application-list {
/* 14319 */         padding: 45px 0;
/* 14320 */     }
/* 14321 */     .application-list__cont ul {
/* 14322 */         margin: 0 0 30px;
/* 14323 */     }
/* 14324 */     .application-list__cont ul li {
/* 14325 */         max-width: 100%;
/* 14326 */         font-size: 20px;
/* 14327 */         line-height: 30px;
/* 14328 */     }
/* 14329 */     .application-list__grid--inner .application-list__bg {
/* 14330 */         display: block;
/* 14331 */     }
/* 14332 */     .application-list__grid--inner img {
/* 14333 */         padding: 30px 0;
/* 14334 */     }
/* 14335 */ }
/* 14336 */ @media (min-width: 992px) {
/* 14337 */     .application-list__grid {
/* 14338 */         min-height: 400px;
/* 14339 */     }
/* 14340 */     .application-list {
/* 14341 */         padding: 60px 0;
/* 14342 */     }
/* 14343 */     .application-list__cont ul {
/* 14344 */         margin: 0 0 40px;
/* 14345 */     }
/* 14346 */     .application-list__cont ul li {
/* 14347 */         max-width: calc((100% / 2) - 10px);
/* 14348 */         font-size: 22px;
/* 14349 */         line-height: 32px;
/* 14350 */     }

/* app.css */

/* 14351 */     .application-list__grid--inner img {
/* 14352 */         padding: 45px 0;
/* 14353 */     }
/* 14354 */ }
/* 14355 */ @media (min-width: 1200px) {
/* 14356 */     .application-list__grid {
/* 14357 */         min-height: 500px;
/* 14358 */     }
/* 14359 */     .application-list {
/* 14360 */         padding: 75px 0;
/* 14361 */     }
/* 14362 */     .application-list__cont ul {
/* 14363 */         margin: 0 0 50px;
/* 14364 */     }
/* 14365 */     .application-list__cont ul li {
/* 14366 */         max-width: calc((100% / 2) - 30px);
/* 14367 */         font-size: 24px;
/* 14368 */         line-height: 34px;
/* 14369 */     }
/* 14370 */ }
/* 14371 */ @media (min-width: 1440px) {
/* 14372 */     .application-list__grid {
/* 14373 */         min-height: 530px;
/* 14374 */     }
/* 14375 */     .application-list {
/* 14376 */         padding: 90px 0;
/* 14377 */     }
/* 14378 */     .application-list__cont ul {
/* 14379 */         margin: 0 0 60px;
/* 14380 */     }
/* 14381 */     .application-list__grid--inner img {
/* 14382 */         padding: 60px 0;
/* 14383 */     }
/* 14384 */ }
/* 14385 */
/* 14386 */ .scaling-product {
/* 14387 */     padding: 40px 0;
/* 14388 */ }
/* 14389 */ .scaling-product__heading {
/* 14390 */     max-width: 1210px;
/* 14391 */     width: 100%;
/* 14392 */     margin: 0 auto 30px;
/* 14393 */     text-align: center;
/* 14394 */ }
/* 14395 */ .scaling-product__heading p {
/* 14396 */     margin: 0;
/* 14397 */ }
/* 14398 */ .scaling-product__grid {
/* 14399 */     display: flex;
/* 14400 */     align-items: stretch;

/* app.css */

/* 14401 */ }
/* 14402 */ .scaling-product__grid--inner {
/* 14403 */     border: 2px solid rgba(243, 112, 35, 1);
/* 14404 */     position: relative;
/* 14405 */     padding: 20px;
/* 14406 */     transition: all 500ms linear;
/* 14407 */ }
/* 14408 */ .scaling-product__grid--inner h3 {
/* 14409 */     color: var(--black);
/* 14410 */     margin: 0 0 12px;
/* 14411 */ }
/* 14412 */ .scaling-product__grid--inner p {
/* 14413 */     margin: 0;
/* 14414 */     color: rgba(0, 0, 0, 0.6);
/* 14415 */     font-size: 14px;
/* 14416 */     line-height: 22px;
/* 14417 */ }
/* 14418 */ .scaling-product__grid--inner:before {
/* 14419 */     content: "";
/* 14420 */     position: absolute;
/* 14421 */     top: 0;
/* 14422 */     right: 0;
/* 14423 */     width: 0;
/* 14424 */     height: 0;
/* 14425 */     border-style: solid;
/* 14426 */     border-width: 0 44px 44px 0;
/* 14427 */     border-color: transparent #F37023 transparent transparent;
/* 14428 */ }
/* 14429 */ .scaling-product.with-back .scaling-product__grid--inner {
/* 14430 */     border: 2px solid var(--black);
/* 14431 */ }
/* 14432 */ .scaling-product.with-back .scaling-product__grid--inner:before {
/* 14433 */     border-color: transparent var(--black) transparent transparent;
/* 14434 */ }
/* 14435 */ .scaling-product__row {
/* 14436 */     row-gap: 30px;
/* 14437 */     justify-content: center;
/* 14438 */ }
/* 14439 */
/* 14440 */ /* Media Queries */
/* 14441 */ @media (min-width: 768px) {
/* 14442 */     .scaling-product {
/* 14443 */         padding: 60px 0;
/* 14444 */     }
/* 14445 */     .scaling-product__heading {
/* 14446 */         margin: 0 auto 45px;
/* 14447 */     }
/* 14448 */     .scaling-product__grid--inner {
/* 14449 */         padding: 30px;
/* 14450 */     }

/* app.css */

/* 14451 */     .scaling-product__grid--inner p {
/* 14452 */         font-size: 16px;
/* 14453 */         line-height: 24px;
/* 14454 */     }
/* 14455 */ }
/* 14456 */
/* 14457 */ @media (min-width: 992px) {
/* 14458 */     .scaling-product {
/* 14459 */         padding: 80px 0;
/* 14460 */     }
/* 14461 */     .scaling-product__heading {
/* 14462 */         margin: 0 auto 60px;
/* 14463 */     }
/* 14464 */     .scaling-product__grid--inner p {
/* 14465 */         font-size: 18px;
/* 14466 */         line-height: 26px;
/* 14467 */     }
/* 14468 */ }
/* 14469 */
/* 14470 */ @media (min-width: 1200px) {
/* 14471 */     .scaling-product {
/* 14472 */         padding: 100px 0;
/* 14473 */     }
/* 14474 */     .scaling-product__heading {
/* 14475 */         margin: 0 auto 75px;
/* 14476 */     }
/* 14477 */     .scaling-product__grid--inner {
/* 14478 */         padding: 40px;
/* 14479 */     }
/* 14480 */ }
/* 14481 */
/* 14482 */ @media (min-width: 1440px) {
/* 14483 */     .scaling-product {
/* 14484 */         padding: 120px 0;
/* 14485 */     }
/* 14486 */     .scaling-product__heading {
/* 14487 */         margin: 0 auto 90px;
/* 14488 */     }
/* 14489 */ }
/* 14490 */
/* 14491 */ .technologies-utilize.with-back {
/* 14492 */     background: rgba(0, 0, 0, 0.05);
/* 14493 */ }
/* 14494 */ .technologies-utilize {
/* 14495 */     padding: 40px 0;
/* 14496 */ }
/* 14497 */ .technologies-utilize__heading {
/* 14498 */     width: 100%;
/* 14499 */     margin: 0 auto 30px;
/* 14500 */     text-align: center;

/* app.css */

/* 14501 */ }
/* 14502 */ .technologies-utilize__main {
/* 14503 */     display: flex;
/* 14504 */     align-items: stretch;
/* 14505 */     flex-wrap: wrap;
/* 14506 */     gap: 30px;
/* 14507 */ }
/* 14508 */ .technologies-utilize__main--inner {
/* 14509 */     max-width: 100%;
/* 14510 */     width: 100%;
/* 14511 */     border: 2px solid var(--black);
/* 14512 */     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
/* 14513 */     padding: 30px 20px;
/* 14514 */     position: relative;
/* 14515 */     background: var(--white);
/* 14516 */ }
/* 14517 */ .technologies-utilize__main--inner-icon {
/* 14518 */     text-align: center;
/* 14519 */ }
/* 14520 */ .technologies-utilize__main--inner-icon img {
/* 14521 */     width: 120px;
/* 14522 */     height: 120px;
/* 14523 */     margin: 0 auto 10px;
/* 14524 */ }
/* 14525 */ .technologies-utilize__main--inner-flip {
/* 14526 */     display: none;
/* 14527 */     transition: 500ms linear;
/* 14528 */ }
/* 14529 */ .technologies-utilize__main--inner:hover {
/* 14530 */     padding: 30px;
/* 14531 */ }
/* 14532 */ .technologies-utilize__main--inner:hover .technologies-utilize__main--inner-flip {
/* 14533 */     display:block;
/* 14534 */     transition: all 500ms linear;
/* 14535 */ }
/* 14536 */ .technologies-utilize__main--inner:hover .technologies-utilize__main--inner-icon {
/* 14537 */     display:none;
/* 14538 */ }
/* 14539 */ .technologies-utilize__main--inner:before {
/* 14540 */     content: "";
/* 14541 */     position: absolute;
/* 14542 */     top: 0;
/* 14543 */     right: 0;
/* 14544 */     width: 0;
/* 14545 */     height: 0;
/* 14546 */     border-style: solid;
/* 14547 */     border-width: 0 66px 66px 0;
/* 14548 */     border-color: transparent var(--black) transparent transparent;
/* 14549 */     transition: all 500ms linear;
/* 14550 */ }

/* app.css */

/* 14551 */ .technologies-utilize__main--inner:hover {
/* 14552 */     background: var(--black);
/* 14553 */ }
/* 14554 */ .technologies-utilize__main--inner-flip p {
/* 14555 */     color: var(--white);
/* 14556 */     font-size: 14px;
/* 14557 */     line-height: 22px;
/* 14558 */     margin: 0;
/* 14559 */     font-weight: 500;
/* 14560 */ }
/* 14561 */ .technologies-utilize__main--inner-icon p {
/* 14562 */     font-size: 24px;
/* 14563 */     line-height: 36px;
/* 14564 */     font-weight: 500;
/* 14565 */     margin: 0;
/* 14566 */ }
/* 14567 */
/* 14568 */
/* 14569 */ @media (min-width: 575px) {
/* 14570 */     .technologies-utilize__main--inner {
/* 14571 */         max-width: calc((100% / 2) - 15px);
/* 14572 */         padding: 45px 30px;
/* 14573 */     }
/* 14574 */ }
/* 14575 */
/* 14576 */ @media (min-width: 768px) {
/* 14577 */     .technologies-utilize {
/* 14578 */         padding: 60px 0;
/* 14579 */     }
/* 14580 */     .technologies-utilize__heading {
/* 14581 */         margin: 0 auto 45px;
/* 14582 */     }
/* 14583 */     .technologies-utilize__main--inner:hover {
/* 14584 */         padding: 40px;
/* 14585 */     }
/* 14586 */     .technologies-utilize__main--inner-flip p {
/* 14587 */         font-size: 16px;
/* 14588 */         line-height: 24px;
/* 14589 */     }
/* 14590 */ }
/* 14591 */
/* 14592 */ @media (min-width: 992px) {
/* 14593 */     .technologies-utilize {
/* 14594 */         padding: 80px 0;
/* 14595 */     }
/* 14596 */     .technologies-utilize__heading {
/* 14597 */         margin: 0 auto 60px;
/* 14598 */     }
/* 14599 */     .technologies-utilize__main--inner-flip p {
/* 14600 */         font-size: 18px;

/* app.css */

/* 14601 */         line-height: 26px;
/* 14602 */     }
/* 14603 */     .technologies-utilize__main--inner {
/* 14604 */         max-width: calc((100% / 3) - 20px);
/* 14605 */         padding: 90px 40px;
/* 14606 */     }
/* 14607 */ }
/* 14608 */
/* 14609 */ @media (min-width: 1200px) {
/* 14610 */     .technologies-utilize {
/* 14611 */         padding: 100px 0;
/* 14612 */     }
/* 14613 */     .technologies-utilize__heading {
/* 14614 */         margin: 0 auto 75px;
/* 14615 */     }
/* 14616 */ }
/* 14617 */
/* 14618 */ @media (min-width: 1440px) {
/* 14619 */     .technologies-utilize {
/* 14620 */         padding: 120px 0;
/* 14621 */     }
/* 14622 */     .technologies-utilize__heading {
/* 14623 */         margin: 0 auto 90px;
/* 14624 */     }
/* 14625 */     .technologies-utilize__main--inner-icon p {
/* 14626 */         font-size: 24px;
/* 14627 */         line-height: 36px;
/* 14628 */     }
/* 14629 */     .technologies-utilize__main--inner {
/* 14630 */         max-width: calc((100% / 4) - 23px);
/* 14631 */         padding: 90px 40px;
/* 14632 */     }
/* 14633 */ }
/* 14634 */ .google-review {
/* 14635 */     padding: 40px 0;
/* 14636 */ }
/* 14637 */ .google-review.bg_light_blue {
/* 14638 */     background: #0000000D;
/* 14639 */ }
/* 14640 */ .google-review__main {
/* 14641 */     display: flex;
/* 14642 */     flex-wrap: wrap;
/* 14643 */ }
/* 14644 */ .google-review__main--inner {
/* 14645 */     max-width: 100%;
/* 14646 */     width: 100%;
/* 14647 */     padding: 30px 0;
/* 14648 */     position: relative;
/* 14649 */     text-align: center;
/* 14650 */ }

/* app.css */

/* 14651 */ .google-review__main--inner-review {
/* 14652 */     display: flex;
/* 14653 */     align-items: center;
/* 14654 */ }
/* 14655 */ .google-review__main--inner-review ul {
/* 14656 */     display: flex;
/* 14657 */     align-items: center;
/* 14658 */     margin: 0 0 0 15px;
/* 14659 */ }
/* 14660 */ .google-review__main--inner-review ul li {
/* 14661 */     margin: 0 7px 0 0;
/* 14662 */ }
/* 14663 */ .google-review__main--inner-review ul li:last-child {
/* 14664 */     margin-right: 0;
/* 14665 */ }
/* 14666 */ .google-review__main--inner:before {
/* 14667 */     content: "";
/* 14668 */     background: rgba(0, 0, 0, 0.1);
/* 14669 */     width: 100%;
/* 14670 */     height: 2px;
/* 14671 */     position: absolute;
/* 14672 */     right: 0;
/* 14673 */     bottom: 0;
/* 14674 */ }
/* 14675 */ .google-review__main--inner:last-child::before {
/* 14676 */     display: none;
/* 14677 */ }
/* 14678 */ .google-review__main--inner-cont {
/* 14679 */     max-width: 300px;
/* 14680 */     width: 100%;
/* 14681 */     margin: 0 auto;
/* 14682 */     text-align: center;
/* 14683 */ }
/* 14684 */
/* 14685 */ @media (min-width: 575px) {
/* 14686 */     .google-review__main--inner {
/* 14687 */         max-width: calc(100% / 2);
/* 14688 */     }
/* 14689 */     .google-review__main--inner:before {
/* 14690 */         content: "";
/* 14691 */         background: rgba(0, 0, 0, 0.1);
/* 14692 */         width: 2px;
/* 14693 */         height: 100%;
/* 14694 */         position: absolute;
/* 14695 */         right: 0;
/* 14696 */         top: 0;
/* 14697 */     }
/* 14698 */     .google-review__main--inner-cont {
/* 14699 */         max-width: 200px;
/* 14700 */     }

/* app.css */

/* 14701 */ }
/* 14702 */
/* 14703 */ @media (min-width: 768px) {
/* 14704 */     .google-review {
/* 14705 */         padding: 60px 0;
/* 14706 */     }
/* 14707 */     .google-review__main--inner-cont {
/* 14708 */         max-width: 300px;
/* 14709 */     }
/* 14710 */ }
/* 14711 */
/* 14712 */ @media (min-width: 992px) {
/* 14713 */     .google-review {
/* 14714 */         padding: 80px 0;
/* 14715 */     }
/* 14716 */     .google-review__main--inner {
/* 14717 */         max-width: calc(100% / 3);
/* 14718 */     }
/* 14719 */     .google-review__main--inner-cont {
/* 14720 */         max-width: 250px;
/* 14721 */     }
/* 14722 */ }
/* 14723 */
/* 14724 */ @media (min-width: 1200px) {
/* 14725 */     .google-review {
/* 14726 */         padding: 100px 0;
/* 14727 */     }
/* 14728 */     .google-review__main--inner-cont {
/* 14729 */         max-width: 300px;
/* 14730 */     }
/* 14731 */ }
/* 14732 */
/* 14733 */ @media (min-width: 1440px) {
/* 14734 */     .google-review {
/* 14735 */         padding: 120px 0;
/* 14736 */     }
/* 14737 */ }
/* 14738 */ .inner-banner {
/* 14739 */     position: relative;
/* 14740 */ }
/* 14741 */ .inner-banner__bg {
/* 14742 */     position: absolute;
/* 14743 */     width: 100%;
/* 14744 */     height: 100%;
/* 14745 */     object-fit: cover;
/* 14746 */     left: 0;
/* 14747 */     top: 0;
/* 14748 */ }
/* 14749 */ .inner-banner__container {
/* 14750 */     padding: 60px 15px;

/* app.css */

/* 14751 */ }
/* 14752 */ .inner-banner h1 {
/* 14753 */     color: var(--white);
/* 14754 */     margin: 0;
/* 14755 */ }
/* 14756 */
/* 14757 */ @media (min-width: 768px) {
/* 14758 */     .inner-banner__container {
/* 14759 */         padding: 90px 15px;
/* 14760 */     }
/* 14761 */ }
/* 14762 */
/* 14763 */ @media (min-width: 992px) {
/* 14764 */     .inner-banner__container {
/* 14765 */         padding: 120px 15px;
/* 14766 */     }
/* 14767 */ }
/* 14768 */
/* 14769 */ @media (min-width: 1200px) {
/* 14770 */     .inner-banner__container {
/* 14771 */         padding: 150px 15px;
/* 14772 */     }
/* 14773 */ }
/* 14774 */
/* 14775 */ @media (min-width: 1440px) {
/* 14776 */     .inner-banner__container {
/* 14777 */         padding: 188px 15px;
/* 14778 */     }
/* 14779 */ }
/* 14780 */ .whychoose {
/* 14781 */     padding: 40px 0;
/* 14782 */     background-repeat: no-repeat;
/* 14783 */     background-size: 100% 100%;
/* 14784 */ }
/* 14785 */ .whychoose__heading {
/* 14786 */     max-width: 1350px;
/* 14787 */     width: 100%;
/* 14788 */     margin: 0 auto 30px;
/* 14789 */     text-align: center;
/* 14790 */ }
/* 14791 */ .whychoose__heading p {
/* 14792 */     max-width: 940px;
/* 14793 */     width: 100%;
/* 14794 */     margin: 0 auto;
/* 14795 */ }
/* 14796 */ .whychoose__heading h2,
/* 14797 */ .whychoose__heading p {
/* 14798 */     color: #fff;
/* 14799 */ }
/* 14800 */ .whychoose__main--grid {

/* app.css */

/* 14801 */     border: 2px solid #ffffff;
/* 14802 */     padding: 20px;
/* 14803 */     position: relative;
/* 14804 */     width: 100%;
/* 14805 */ }
/* 14806 */ .whychoose__main {
/* 14807 */     row-gap: 30px;
/* 14808 */     align-items: stretch;
/* 14809 */ }
/* 14810 */ .whychoose__main .whychoose__main--col {
/* 14811 */     display: flex;
/* 14812 */ }
/* 14813 */ .whychoose__main--grid h4 {
/* 14814 */     color: var(--white);
/* 14815 */     font-weight: 400;
/* 14816 */ }
/* 14817 */
/* 14818 */ .whychoose__main--grid:before {
/* 14819 */     content: "";
/* 14820 */     position: absolute;
/* 14821 */     top: 0;
/* 14822 */     right: 0;
/* 14823 */     width: 0;
/* 14824 */     height: 0;
/* 14825 */     border-style: solid;
/* 14826 */     border-width: 0 44px 44px 0;
/* 14827 */     border-color: transparent #ffffff transparent transparent;
/* 14828 */     transition: all 500ms linear;
/* 14829 */ }
/* 14830 */ .whychoose__button{
/* 14831 */     padding-top: 60px;
/* 14832 */ }
/* 14833 */
/* 14834 */
/* 14835 */
/* 14836 */ @media (min-width: 768px) {
/* 14837 */     .whychoose {
/* 14838 */         padding: 60px 0;
/* 14839 */     }
/* 14840 */     .whychoose__heading {
/* 14841 */         margin: 0 auto 45px;
/* 14842 */     }
/* 14843 */     .whychoose__main--grid {
/* 14844 */         padding: 26px;
/* 14845 */     }
/* 14846 */ }
/* 14847 */
/* 14848 */ @media (min-width: 992px) {
/* 14849 */     .whychoose {
/* 14850 */         padding: 80px 0;

/* app.css */

/* 14851 */     }
/* 14852 */     .whychoose__heading {
/* 14853 */         margin: 0 auto 60px;
/* 14854 */     }
/* 14855 */     .whychoose__main--grid {
/* 14856 */         padding: 32px;
/* 14857 */     }
/* 14858 */ }
/* 14859 */
/* 14860 */ @media (min-width: 1200px) {
/* 14861 */     .whychoose {
/* 14862 */         padding: 100px 0;
/* 14863 */     }
/* 14864 */     .whychoose__heading {
/* 14865 */         margin: 0 auto 75px;
/* 14866 */     }
/* 14867 */     .whychoose__main--grid {
/* 14868 */         padding: 40px;
/* 14869 */     }
/* 14870 */ }
/* 14871 */
/* 14872 */ @media (min-width: 1440px) {
/* 14873 */     .whychoose {
/* 14874 */         padding: 120px 0;
/* 14875 */     }
/* 14876 */     .whychoose__heading {
/* 14877 */         margin: 0 auto 90px;
/* 14878 */     }
/* 14879 */ }
/* 14880 */ .hire_a_developer {
/* 14881 */     padding: 30px 0;
/* 14882 */     position: relative;
/* 14883 */     background: var(--black);
/* 14884 */ }
/* 14885 */ .hire_a_developer__cont h3 {
/* 14886 */     margin-top: 20px;
/* 14887 */     text-align: center;
/* 14888 */ }
/* 14889 */ .hire_a_developer__cont p {
/* 14890 */     color: var(--white);
/* 14891 */     margin: 0 0 38px;
/* 14892 */ }
/* 14893 */ .hire_a_developer__cont ul {
/* 14894 */     display: flex;
/* 14895 */     align-items: center;
/* 14896 */     justify-content: space-between;
/* 14897 */     flex-wrap: wrap;
/* 14898 */     margin: 20px 0 20px;
/* 14899 */ }
/* 14900 */ .hire_a_developer__cont ul li {

/* app.css */

/* 14901 */     color: var(--white);
/* 14902 */     padding-left: 42px;
/* 14903 */     font-size: 18px;
/* 14904 */     line-height: 28px;
/* 14905 */     font-weight: 500;
/* 14906 */     max-width: 100%;
/* 14907 */     width: 100%;
/* 14908 */     position: relative;
/* 14909 */     margin: 10px 0;
/* 14910 */ }
/* 14911 */ .hire_a_developer__cont ul li:before {
/* 14912 */     content: "";
/* 14913 */     background: url("../components/hire-a-developer/http:/staging.brainstreamtechnolabs.com/wp-content/uploads/2024/07/rectangle-icon.svg");
/* 14914 */     height: 26px;
/* 14915 */     width: 26px;
/* 14916 */     position: absolute;
/* 14917 */     left: 0;
/* 14918 */     top: 5px;
/* 14919 */ }
/* 14920 */ .hire_a_developer.with-back {
/* 14921 */     background: var(--white);
/* 14922 */ }
/* 14923 */ .hire_a_developer.with-back .hire_a_developer__cont h3,
/* 14924 */ .hire_a_developer.with-back .hire_a_developer__cont p,
/* 14925 */ .hire_a_developer.with-back .hire_a_developer__cont ul li {
/* 14926 */     color: var(--black);
/* 14927 */ }
/* 14928 */ .hire_a_developer.with-back .hire_a_developer__cont .hire_a_developer__btn {
/* 14929 */     box-shadow: 0px 0px 10px 0px rgba(243, 112, 35, 0.1);
/* 14930 */ }
/* 14931 */ .hire_a_developer__bg {
/* 14932 */     height: 100%;
/* 14933 */     top: 50%;
/* 14934 */     transform: translateY(-50%);
/* 14935 */     position: absolute;
/* 14936 */     right: 25vw;
/* 14937 */     background: #F370231A;
/* 14938 */     width: 100vw;
/* 14939 */     display: none;
/* 14940 */     z-index: 0  ;
/* 14941 */ }
/* 14942 */ .hire_a_developer_button_wrapper{
/* 14943 */     text-align: center;
/* 14944 */ }
/* 14945 */ .hire_a_developer__grid--inner{
/* 14946 */     position: relative;
/* 14947 */ }
/* 14948 */
/* 14949 */
/* 14950 */ @media (min-width: 768px) {

/* app.css */

/* 14951 */     .hire_a_developer {
/* 14952 */         padding: 45px 0;
/* 14953 */     }
/* 14954 */     .hire_a_developer__cont ul {
/* 14955 */         margin: 30px 0 30px;
/* 14956 */     }
/* 14957 */     .hire_a_developer__cont ul li {
/* 14958 */         max-width: 100%;
/* 14959 */         font-size: 20px;
/* 14960 */         line-height: 30px;
/* 14961 */     }
/* 14962 */     .hire_a_developer__bg {
/* 14963 */         display: block;
/* 14964 */         height: 360px;;
/* 14965 */     }
/* 14966 */     .hire_a_developer__grid--inner img{
/* 14967 */         height: 300px;
/* 14968 */         top: 0;
/* 14969 */         transform: translateY(-50%);
/* 14970 */         position: absolute;
/* 14971 */         left: auto;
/* 14972 */         width: 50vw;
/* 14973 */         right: 0;
/* 14974 */         object-fit: cover;
/* 14975 */         max-width: none;
/* 14976 */     }
/* 14977 */     .hire_a_developer__cont h3{
/* 14978 */         text-align: start;
/* 14979 */     }
/* 14980 */     .hire_a_developer_button_wrapper {
/* 14981 */         text-align: start;
/* 14982 */     }
/* 14983 */ }
/* 14984 */ @media (min-width: 992px) {
/* 14985 */     .hire_a_developer {
/* 14986 */         padding: 60px 0;
/* 14987 */     }
/* 14988 */     .hire_a_developer__cont ul {
/* 14989 */         margin: 40px 0 40px;
/* 14990 */     }
/* 14991 */     .hire_a_developer__cont ul li {
/* 14992 */         max-width: 100%;
/* 14993 */         font-size: 22px;
/* 14994 */         line-height: 32px;
/* 14995 */     }
/* 14996 */     .hire_a_developer__bg {
/* 14997 */         height: 450px;;
/* 14998 */     }
/* 14999 */     .hire_a_developer__grid--inner img{
/* 15000 */         height: 350px;

/* app.css */

/* 15001 */     }
/* 15002 */ }
/* 15003 */ @media (min-width: 1200px) {
/* 15004 */     .hire_a_developer {
/* 15005 */         padding: 75px 0;
/* 15006 */     }
/* 15007 */     .hire_a_developer__cont ul {
/* 15008 */         margin: 50px 0 50px;
/* 15009 */     }
/* 15010 */     .hire_a_developer__cont ul li {
/* 15011 */         max-width: 100%;
/* 15012 */         font-size: 24px;
/* 15013 */         line-height: 34px;
/* 15014 */     }
/* 15015 */ }
/* 15016 */ @media (min-width: 1440px) {
/* 15017 */
/* 15018 */     .hire_a_developer {
/* 15019 */         padding: 90px 0;
/* 15020 */     }
/* 15021 */     .hire_a_developer__cont ul {
/* 15022 */         margin: 60px 0 60px;
/* 15023 */     }
/* 15024 */     .hire_a_developer__bg {
/* 15025 */         height: 550px;;
/* 15026 */     }
/* 15027 */     .hire_a_developer__grid--inner img{
/* 15028 */         height: 450px;
/* 15029 */     }
/* 15030 */ }
/* 15031 */
/* 15032 */ .faqs {
/* 15033 */     background: #f2f2f2;
/* 15034 */     padding: 120px 0;
/* 15035 */ }
/* 15036 */ .faqs__heading {
/* 15037 */     max-width: 1210px;
/* 15038 */     width: 100%;
/* 15039 */     margin: 0 auto 90px;
/* 15040 */     text-align: center;
/* 15041 */ }
/* 15042 */
/* 15043 */ .faqs .faq-item {
/* 15044 */     margin: 0 0 16px;
/* 15045 */     padding: 0 16px 0;
/* 15046 */     overflow: hidden;
/* 15047 */     border: 1px solid #ccc;
/* 15048 */     border-left: 3px solid #ff851d;
/* 15049 */     border-right: 3px solid #ff851d;
/* 15050 */ }

/* app.css */

/* 15051 */ .faqs .faq-question {
/* 15052 */     margin: 15px 0;
/* 15053 */     gap: 10px;
/* 15054 */     width: 100%;
/* 15055 */     background: none;
/* 15056 */     border: none;
/* 15057 */     display: flex;
/* 15058 */     justify-content: space-between;
/* 15059 */     align-items: center;
/* 15060 */     cursor: pointer;
/* 15061 */     outline: none;
/* 15062 */     transition: all 0.3s;
/* 15063 */ }
/* 15064 */ .faqs .faq-answer {
/* 15065 */     max-height: 0;
/* 15066 */     transition: all 0.3s;
/* 15067 */ }
/* 15068 */ .faqs .faq-answer p {
/* 15069 */     color: #333;
/* 15070 */     padding-bottom: 15px;
/* 15071 */     margin: 0;
/* 15072 */ }
/* 15073 */ @media (min-width: 1441px) {
/* 15074 */     .faqs .faq-answer p {
/* 15075 */         font-size: 18px;
/* 15076 */         line-height: 2.7rem;
/* 15077 */     }
/* 15078 */ }
/* 15079 */ .faqs .icon {
/* 15080 */     width: 36px;
/* 15081 */     height: 36px;
/* 15082 */     background-color: #ff851d;
/* 15083 */     border-radius: 50%;
/* 15084 */     display: flex;
/* 15085 */     justify-content: center;
/* 15086 */     align-items: center;
/* 15087 */     color: #fff;
/* 15088 */     font-size: 25px;
/* 15089 */     font-weight: 500;
/* 15090 */     transition: all 0.3s;
/* 15091 */     flex-shrink: 0;
/* 15092 */ }
/* 15093 */ .faqs .open .faq-answer {
/* 15094 */     max-height: 300px;
/* 15095 */ }
/* 15096 */
/* 15097 */
/* 15098 */  /* Move reCAPTCHA v3 badge to the left */
/* 15099 */
/* 15100 */  .grecaptcha-badge {

/* app.css */

/* 15101 */   width: 70px !important;
/* 15102 */   overflow: hidden !important;
/* 15103 */   transition: all 0.3s ease !important;
/* 15104 */   left: 4px !important;
/* 15105 */ }
/* 15106 */ .grecaptcha-badge:hover {
/* 15107 */   width: 256px !important;
/* 15108 */ }
/* 15109 */
/* 15110 */
/* 15111 */  /* Contact form and Blog form success massage remove */
/* 15112 */ [data-wpcf7-id="71"],
/* 15113 */ [data-wpcf7-id="1406"] {
/* 15114 */   .wpcf7-form.sent .wpcf7-response-output {
/* 15115 */     display: none;
/* 15116 */   }
/* 15117 */ }
