/*
 Theme Name: Twenty Nineteen Child
 Theme URI: https://www.element8.ae
 Author: Element8
 Author URI: https://www.element8.ae
 Template: twentynineteen
 Description: Child theme for Twenty Seventeen.
 Version: 0.22
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags:
 Text Domain: twentynineteen-child
*/

:root {
  --color-primary: #1568b8;
  --color-primary-hover: #074f92;
  --color-secondary: #27a777;
  --color-secondary-hover: #0f8356;
  --color-third: #a4d029;
  --font-primary: "Poppins", sans-serif;
  --transition-time: 0.25s;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  color: #000;
  /* font-size: 18px; */
  background: #ffffff;
  font-family: var(--font-primary);
  --container-width: 1400px;
  --wp--style--global--content-size: var(--container-width);
  line-height: 1.4;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  -moz-transition: all var(--transition-time) ease;
  -o-transition: all var(--transition-time) ease;
  -webkit-transition: all var(--transition-time) ease;
  -ms-transition: all var(--transition-time) ease;
  transition: all var(--transition-time) ease;
}

a:where(:not(.wp-element-button)) {
  text-decoration: none !important;
}

a:hover {
  text-decoration: none;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}

p:only-child,
p:last-child {
  margin: 0;
}

h1,
h1 {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 30px;
}

h2,
.h2 {
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 20px;
}

h3,
.h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

h4,
.h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

h5,
.h5 {
  font-size: 18px;
  margin-bottom: 15px;
}

h6,
.h6 {
  font-size: 16px;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
  font-family: "Proxima-reguler";
  font-size: 18px;
  line-height: 27px;
}

[class*=" eplus-styles-uid-"] {
  font-family: "Proxima-reguler";
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}

img,
svg {
  vertical-align: middle;
}

input,
select,
button,
textarea {
  cursor: pointer;
  font-family: var(--font-primary);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="submit"] {
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

button,
[role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  /* line-height: inherit; */
}

span {
  display: inline-block;
}

select {
  background-image: url(../images/down-arrow.png);
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  -ms-progress-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

:focus {
  outline: none;
}

textarea {
  min-height: 150px;
  resize: none;
}

/* .form-field, */
input[type="text"]{
  display: block;
  width: 100%;
  height: 44px;
  padding-bottom: 15px;
  font-size: 24px;
  font-family: "Proxima-reguler";
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #ced4da;
}

iframe {
  border: 0;
}

.w-100 {
  width: 100% !important;
}

/* -------------------------------------------------------------- */

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

/* -------------------------------------------------------------- */

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* -------------------------------------------------------------- */

.button:not(.button-small) {
  --height: 52px;
  display: inline-block;
  cursor: pointer;
  background-color: #d4d5d6;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0 30px;
  height: var(--height);
  line-height: var(--height);
  font-size: 16px;
  -webkit-transition: all var(--transition-time) ease-in-out;
  transition: all var(--transition-time) ease-in-out;
}

.button + .button {
  margin-left: 10px;
}

.button_primary {
  color: #ffffff;
  background: var(--color-primary);
}

.button_primary:hover {
  background: var(--color-primary-hover);
}

/* -------------------------------------------------------------- */

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* -------------------------------------------------------------- */

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.container,
.wp-block-group__inner-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  max-width: var(--container-width);
}

.container_new {
  margin-left: calc((100% - (1223px - 1.5rem)) / 2);
}

.container_left {
  margin-left: calc((100% - (1223px - 1.5rem)) / 2);
}

.container_right {
  margin-right: calc((100% - (1223px - 1.5rem)) / 2);
}

/* -------------------------------------------------------------- */

.text-white {
  color: #ffffff;
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-secondary {
  background-color: var(--color-secondary);
}

/* -------------------------------------------------------------- */

.zoom_effect {
  overflow: hidden;
}

.zoom_effect > a {
  display: block;
}

.zoom_effect img {
  position: relative;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all var(--transition-time) ease-in-out;
  transition: all var(--transition-time) ease-in-out;
  will-change: transform;
}

.zoom_effect:hover img {
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
}

/* -------------------------------------------------------------- */

.owl_default_nav button {
  --size: 48px;
  --side: 60px;
  position: absolute;
  top: 50%;
  margin-top: -24px;
  width: var(--size);
  height: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff !important;
  will-change: transform;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all var(--transition-time) ease-in-out;
  transition: all var(--transition-time) ease-in-out;
}

.owl_default_nav button [class*="icon-"] {
  color: #a9a9a9;
  font-size: 16px;
}

.owl_default_nav button.owl-prev {
  left: var(--side);
}

.owl_default_nav button.owl-next {
  right: var(--side);
}

.owl_default_nav button.owl-prev:hover,
.owl_default_nav button.owl-next:hover {
  background: var(--color-secondary-hover) !important;
}

.owl_default_nav button:hover [class*="icon-"] {
  color: #ffffff;
}

/* -------------------------------------------------------------- */

.pagination {
  margin-top: 40px;
  display: flex;
}

.pagination a,
.pagination span {
  --size: 47px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: center;
}

.pagination .active,
.pagination a:hover {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.pagination > * + * {
  margin-left: 14px;
}

/* -------------------------------------------------------------- */

.search-pannel {
  --search-height: 40px;
  position: absolute;
  height: var(--search-height);
  top: -8px;
  width: 200px;
  border-radius: 30px;
  overflow: hidden;
  right: calc(100% + 10px);
  z-index: 99;
  display: none;
}

.search-expand {
  width: 100%;
  z-index: 999;
  border: none;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  background: #fff;
  padding: 0 5% 0 20px;
  height: var(--search-height);
}

.search-btn {
  color: var(--color-primary);
  cursor: pointer;
  margin-left: 20px;
}

/*------------------------------*/

.contact-map {
  min-height: 600px;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 5px;
  text-align: left;
}

.wpcf7 form .wpcf7-response-output {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output {
  background: #dc3232;
  border-color: #dc3232;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  background-color: #46b450;
}

/*------------------------------*/

.default-page {
  padding: 100px 0;
}

.default-page ol:not(.pagination),
.default-page ul:not(.pagination) {
  padding-left: 28px;
}

.default-page ol:not(:last-child),
.default-page ul:not(:last-child) {
  margin: 0 0 20px 0;
}

/*------------------------------*/

.error404 header,
.search-results header,
.search-no-results header {
  background: #000000;
}

.error-404,
.search-page-inner,
.search-noresult-inner {
  text-align: left;
  margin-top: 145px;
  padding: 120px 120px;
}

.error-404 h1,
.search-page h1,
.search-noresult h1 {
  font-size: 30px;
}

.error-404 h1 {
  margin-bottom: 15px;
}

.error-404 h3 {
  margin: 40px 0 25px 0;
}

.error-404 h4 {
  margin-bottom: 15px;
}

.error-404 ul {
  padding-left: 30px;
  list-style: disc;
}

.error-404 ul li {
  font-size: 15px;
  margin-bottom: 0;
}

.error-404 ul li + li {
  margin-top: 10px;
}

.error-404 .button {
  margin-top: 30px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}

/*------------------------------*/

.search-page ul {
  padding: 0;
  margin: 40px 0 0 0;
  list-style: none;
}

.search-page li {
  border: 1px solid #ddd;
}

.search-page li + li {
  margin-top: 20px;
}

.search-page li a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.search-page .image {
  width: 30%;
}

.search-page .content {
  width: 70%;
  padding: 20px 30px;
}

/*------------------------------*/

.search-no-results .search-form {
  display: flex;
  margin-top: 20px;
  max-width: 380px;
  width: 100%;
}

.search-no-results .search-form label {
  width: 100%;
}

.search-no-results .search-field {
  width: 100%;
  padding-left: 15px;
  border: 1px solid #999;
}

.search-no-results .search-field,
.search-no-results .search-submit {
  height: 40px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.search-no-results .search-submit {
  border: none;
  padding: 0 20px;
  color: #ffffff;
  font-weight: bold;
  margin-left: 5px;
  background: var(--color-primary);
}

.search-no-results .search-submit:hover {
  background: var(--color-primary-hover);
}

/*------------------------------*/

rs-sbg{
  object-fit: cover !important;
  object-position: top !important;
  
}

.sub-banner {
  padding: 0;
  background: #f1f1f1;
  background-size: cover;
  background-position: top center !important;
}

.sub-banner h1 {
  /* font-size: 45px; */
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
}

.sub-banner .container {
  height: 697px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom:60px;
}

.main-title {
  font-size: 45px;
  line-height: 50px;
  font-weight: bold;
  color: #000;
}

.main {
  overflow: hidden;
}

/*------------------------------------------------------------------
1. Home page
-------------------------------------------------------------------*/

.main-banner {
  width: 100%;
  height: auto;
  position: relative;
}

.main-banner-arrow {
  width: 65px;
  height: 65px;
  background-color: #1568b8;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -22px;
  z-index: 9;
  background-image: url(assets/images/banner-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  animation: down 1.5s infinite;
  -webkit-animation: down 1.5s infinite;
}

.home-about-section {
  padding: 100px 0px 100px;
  overflow: hidden;
  position: relative;
}

.home-about-section .about-object1 {
  position: absolute;
  top: 0;
  left: 0;
}

.home-about-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hme-about-text {
  width: 45%;
}

.hme-about-text h2 {
  line-height: 55px;
}

.hme-about-text p {
  font-size: 22px;
  line-height: 30px;
}

.hme-about-text p span {
  color: #1568b8;
  font-family: "Proxima-bold";
}

.hme-about-text h4 {
  font-size: 30px;
  line-height: 42px;
  color: #1ea270;
  font-family: "Breathing_Personal";
  font-weight: 100;
  margin-bottom: 0px;
}

.home-about-image {
  width: 48%;
}

.home-about-image-inner {
  --size: 668px;
  width: var(--size);
  height: var(--size);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  margin-top: 20px;
  position: relative;
}

.home-about-image-inner a {
  cursor: pointer;
}

.home-about-image-new {
  width: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.home-about-image-new img {
  width: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.home-about-image-inner::after {
  content: "";
  --size: 516px;
  width: var(--size);
  height: var(--size);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  z-index: -1;
  background-image: url(assets/images/about-border.png);
  background-repeat: no-repeat;
  background-size: 100%;
  left: -175px;
  top: 200px;
}

.play-btn {
  --size: 89px;
  width: var(--size);
  height: var(--size);
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
/* [class*="button-"] */

.hme-abut-btn-main .button-primary,
.button-white-outline {
  --height: 52px;
  min-width: 190px;
  height: var(--height);
  line-height: var(--height);
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 0 15px;
  border: 2px solid transparent;
  text-transform: uppercase;
  text-align: center;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}

.button-primary-outline {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.button-primary-outline:hover {
  color: #ffffff;
  background: var(--color-primary-hover);
}

.button-secondary-outline {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.button-secondary-outline:hover {
  color: #ffffff;
  background: var(--color-secondary-hover);
}

.button-white-outline {
  color: #ffffff;
  border-color: #ffffff;
}

.button-white-outline:hover {
  background: #ffffff;
}

.btn-main {
  --height: 52px;
  min-width: 190px;
  height: var(--height);
  line-height: var(--height);
  display: inline-block;
  background-color: #074f92;
  color: #fff;
  padding: 0px 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}

.btn-main:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.btn-main.light-blue {
  background-color: var(--color-primary);
}

.btn-main.light-blue:hover {
  background-color: #074f92;
}

.hme-abut-btn-main {
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.hme-abut-btn-main a + a {
  margin-left: 15px;
}

.btn-main.btn-green {
  background: #ffffff;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.btn-main.btn-green:hover {
  color: #fff;
  background-color: var(--color-secondary-hover);
}

.home-about-icon {
  width: 100%;
  margin-top: 80px;
  text-align: center;
}

.home-about-icon ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-about-icon ul li {
  padding: 0px 50px;
  display: flex;
  align-items: center;
  height: 160px;
  border-left: 1px solid #efefef;
}

.home-about-icon ul li:first-child {
  border-left: none;
}

.home-about-advantage {
  width: 100%;
  height: auto;
  margin-top: 20px;
  text-align: center;
  padding: 0px 10%;
}

.home-about-advantage .main-title {
  margin-bottom: 35px;
}

.ib-section {
  width: 100%;
  padding: 80px 0;
  background: var(--color-primary);
  position: relative;
}

.ib-section-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  row-gap: 30px;
}

.ib-section-image {
  width: 58%;
}

.ib-section-image-inner {
  --size: 745px;
  width: var(--size);
  height: var(--size);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  margin-top: 20px;
  position: relative;
}

.ib-section-image-inner img {
  width: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: relative;
  z-index: 2;
}

.ib-section-content {
  width: 27%;
  /*padding-left: 5%;*/
}

.ib-section-content .main-title {
  color: #fff;
  margin-bottom: 20px;
}

.ib-section-content p {
  color: #fff;
  margin-bottom: 15px;
}

.ib-section-content p + p {
  margin: 0;
}

.ib-section-content .button-white-outline {
  margin-top: 35px;
}

.ib-section-image-second {
  --size: 500px;
  width: var(--size);
  height: var(--size);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  margin-top: 20px;
  position: absolute;
  right: -57px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
  overflow: hidden;
}

.ib-section-image-second img {
  width: 100%;
}

.hme-learning-section {
  width: 100%;
  position: relative;
  padding: 130px 0 85px;
  background-image: url(assets/images/hme-learning-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.hme-learning-section-inner {
  text-align: center;
  position: relative;
  width: 100%;
}

.hme-learning-section-inner h2 {
  display: inline-block;
  font-size: 75px;
  line-height: 60px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-right: 35px;
}

.hme-learning-section-inner h2::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0px;
  width: 100%;
  height: 12px;
  background-color: #a4d02a;
}

.hme-learning-section-inner h2::before {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0px;
  --size: 24px;
  width: var(--size);
  height: var(--size);
  background-color: #a4d02a;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.learning-main-image {
  margin-top: 55px;
  max-width: 992px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.hme-result-section {
  width: 100%;
  padding: 60px 0px 80px;
}

.hme-result-section-content {
  text-align: center;
}

.hme-result-section-content .main-title {
  margin-bottom: 25px;
}

.hme-result-round-section {
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  margin-top: 35px;
  padding: 75px 0px;
}

.hme-result-round-section ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hme-result-round-section ul li {
  --size: 280px;
  width: var(--size);
  height: var(--size);
  background-color: var(--color-secondary);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  z-index: 0;
  padding: 7px;
  border: 7px solid var(--color-secondary);
  position: relative;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.hme-result-round-section ul li:hover {
  z-index: 9;
}

.result-round-inner {
  --size: 100%;
  width: var(--size);
  height: var(--size);
  background-color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.result-icon {
  max-height: 80px;
  margin-bottom: 10px;
}

.result-icon img {
  max-height: 80px;
}

.result-round-inner h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 22px;
  color: #000;
  margin-bottom: 5px;
  width: 100%;
}

.result-round-inner p {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 10px;
  width: 100%;
}

.blue-line {
  content: "";
  width: 80px;
  height: 1px;
  background-color: #1568b8;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

.hme-result-round-section ul li:nth-child(2),
.hme-result-round-section ul li:nth-child(4) {
  transform: scale(1.3);
  z-index: 2;
  background-color: var(--color-primary);
  border: 7px solid var(--color-primary);
}

.hme-result-round-section ul li:nth-child(2):hover,
.hme-result-round-section ul li:nth-child(4):hover {
  z-index: 9;
}

.hme-result-round-section ul li:nth-child(3) {
  transform: scale(1.5);
  z-index: 4;
}

.hme-life-section {
  width: 100%;
  padding: 60px 0px 10px;
  display: inline-block;
}

.hme-life-heading h2 {
  display: block;
  color: #000;
  position: relative;
  /* padding-right: 35px; */
  display: inline-block;
  line-height:1;
}

/* .hme-life-heading h2::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0px;
  width: 100%;
  height: 8px;
  background-color: #a4d02a;
}

.hme-life-heading h2::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  --size: 24px;
  width: var(--size);
  height: var(--size);
  background-color: #2182df;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
} */

.hme-life-heading {
  text-align: center;
}

.hme-life-grid {
  width: 100%;
  margin-top: 50px;
}

.hme-life-grid ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.hme-life-grid ul li {
  width: 20%;
  position: relative;
}

.hme-life-grid-img img {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hme-life-grid-content {
  width: 100%;
  padding: 20px 25px;
  font-weight: 500;
  background-color: #1568b8;
  color: #fff;
  font-size: 25px;
  text-align: center;
}

.hme-life-grid ul li:nth-child(2) .hme-life-grid-content,
.hme-life-grid ul li:nth-child(5) .hme-life-grid-content {
  background-color: #27a777;
}

.hme-life-grid ul li:nth-child(3) .hme-life-grid-content {
  background-color: #a4d02a;
}

.hme-life-grid ul li {
  overflow: hidden;
}

.hme-life-grid ul li:hover .hme-life-hover {
  top: 0;
}

.hme-life-hover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 50px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.hme-life-hover-inner {
  width: 100%;
  text-align: center;
}

.hme-life-hover-inner h3 {
  margin-bottom: 20px;
  font-size: 35px;
  line-height: 40px;
}

.hme-life-hover-inner,
.hme-life-hover-inner .link {
  color: #ffffff;
}

.hme-life-hover-inner .link,
.hme-life-hover-inner p {
  font-size: 20px;
}

.hme-life-hover-inner p {
  font-weight: 400;
}

.hme-life-hover-inner p {
  line-height: 30px;
}

.hme-insta-title {
  width: 100%;
  text-align: center;
}

.hme-insta h2 {
  text-align: center;
  width: 100%;
}

.get-soc {
  display: flex;
  width: 100%;
  margin-top: 70px;
}

.get-soc ul {
  display: flex;

  flex-wrap: wrap;
  row-gap: 15px;

  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.get-soc li {
  width: 15.7%;
  overflow: hidden;
}

.get-soc li:nth-child(3) {
  width: 33.5%;
}

.get-soc li:nth-child(1),
.get-soc li:nth-child(2),
.get-soc li:nth-child(4),
.get-soc li:nth-child(5) {
  margin-top: 70px;
}

.get-soc .item {
  width: 100%;
  display: inline-block;
}

.get-soc .item + .item {
  margin: 10px 0 0 0;
}

.get-soc h3 {
  font-size: 20px;
  margin: 30px auto 0 auto;
  display: flex;
  line-height: 1;
  align-items: center;
  justify-content: center;
}

.get-soc h3 a {
  display: flex;
  color: #000000;
  font-weight: 400;
}

.get-soc h3:hover a {
  color: #41a088;
}

.get-soc h3 i {
  margin-right: 7px;
}

.get-soc img {
  width: 100%;
}

.hme-insta {
  padding: 50px 0px 100px;
}

.insta-img {
  width: 60px;
  height: 60px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  margin: 0 auto;
  margin-bottom: 30px !important;
}

.footer-top ul li {
  position: relative;
}

.footer-top ul li::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  left: 0;
  right: 0;
  bottom: -13px;
  margin: 0 auto;
  position: absolute;
  opacity: 0;
}

.footer-top ul li:hover::after {
  opacity: 1;
}

/*------------------------------------------------------------------
2. carriculam page
-------------------------------------------------------------------*/

.first_section_carriculam {
  width: 100%;
  padding-top: 90px;
  position: relative;
}

/* ---------------------------------------------------------------- */

.second_section_carriculam {
  padding: 120px 0 200px 0;
}

.second_section_carriculam .thirty-sixty {
  align-items: flex-start;
}

.second_section_carriculam .third-dot {
  bottom: -40px;
}

.second_section_carriculam .thirty-sixty .content {
  padding-right: 300px;
  position: relative;
}

.second_section_carriculam .thirty-sixty .logo-icons {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------------------------------------------------------------- */

.third_section_carriculam h2 {
  margin-bottom: 50px;
}

.third_section_carriculam .with-icon-list {
  margin-top: 60px;
}

/* ---------------------------------------------------------------- */

.thirty-sixty {
  display: flex;
  flex-wrap: wrap;
}

.thirty-sixty .image {
  width: 35%;
  position: relative;
}

.thirty-sixty .image img {
  --size: 459px;
  width: var(--size);
  height: var(--size);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.thirty-sixty .content {
  width: 65%;
}

.thirty-sixty .content .btn-main {
  margin-top: 50px;
}

.first_section_team.carriculam-second .content h2 {
  margin-bottom: 40px;
}

.first_section_team.carriculam-second .content {
  padding: 40px 340px 0 100px;
  width: calc(100% - 500px);
}

.carriculam-second .logo-icons {
  flex-direction: column;
  row-gap: 15px;
  position: absolute;
  right: 30px;
  top: 37%;
}

.carriculam-second .btn-main {
  margin-top: 35px;
}

.first_section_carriculam p a {
  color: #1ea270;
}

.curriculam-third-section {
  width: 100%;
  padding: 130px 0px 100px;
  background-color: #f6f6f6;
}

.curriculam-third-section h4 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  margin-bottom: 25px;
}

.list-coloum {
  width: 100%;
  margin-top: 65px;
  display: flex;
  flex-wrap: wrap;
}

.list-coloum ul {
  width: 50%;
  padding: 0px 40px;
  border-left: 2px solid #1ea270;
}

.list-coloum ul li {
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e6e6e6;
}

.list-coloum ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.curriculam-third-content {
  width: 100%;
  margin-top: 75px;
}

.curriculam-third-content ul {
  margin-top: 45px;
  margin-left: -0.5%;
  margin-right: -0.5%;
  display: flex;
  flex-wrap: wrap;
}

.curriculam-third-content ul li {
  width: 24%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 20px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  border: 1px solid #1ea270;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.curriculam-third-content ul li a {
  width: 100%;
  height: 100%;
  display: inline-block;
  line-height: 22px;
  font-weight: 500;
  padding: 14px 30px;
}

.curriculam-third-content ul li:hover {
  background-image: url(assets/images/li-hover.png);
  background-color: #1ea270;
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.curriculam-third-content ul li:hover a {
  color: #fff;
}

.curriculam-fourth-section {
  width: 100%;
}

.curriculam-fourth-section h4 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  margin-bottom: 60px;
}

.curriculam-fourth-section p {
  margin: 0;
}

.curriculam-fourth-section p + p {
  margin-top: 30px;
}

.curriculam-fourth-section p span {
  font-weight: 500;
}

.curriculam-fourth-section p a {
  color: #1ea270;
}

/*------------------------------------------------------------------
3. learn profile
-------------------------------------------------------------------*/

.first_section_learnprofile {
  width: 100%;
  padding: 130px 0 100px;
  position: relative;
}

.first_section_learnprofile .list-options {
  margin-top: 140px;
}

/*------------------------------------------------------------------
4. Service Learning Programme
-------------------------------------------------------------------*/

.service_learning_first {
  padding: 180px 0;
}

.service_learning_first .content-block {
  margin-top: 220px;
}

.service_learning_first .content-block h2 {
  margin-bottom: 40px;
}

.service_learning_first .content-block p {
  margin: 0;
}

.service_learning_first .content-block p + p {
  margin-top: 30px;
}

/* ---------------------------------------------------------------- */

.service_fliping {
  padding: 120px 0;
}

.service_fliping.flip .container {
  flex-direction: row-reverse;
}

.service_fliping .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 40px;
}

.service_fliping .content {
  width: 55%;
}

.service_fliping .content h2 {
  font-size: 35px;
  line-height: 1;
}

/*------------------------------------------------------------------
4. Student Leadership
-------------------------------------------------------------------*/

.student-leadership-first .title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 50px;
}

.student-leadership-first h2 {
  margin: 140px 0 40px 0;
}

/*------------------------------------------------------------------
4. inclusion
-------------------------------------------------------------------*/

.first_section_inclusion {
  width: 100%;
  padding-top: 140px;
  position: relative;
}

.first_section_inclusion .image_card {
  margin-top: 140px;
  margin-bottom: 140px;
}

/*------------------------------------------------------------------
5. university
-------------------------------------------------------------------*/

.university-first-section img {
  margin: 140px auto;
}

.university-first-section p {
  margin: 0;
}

.university-first-section p + p {
  margin-top: 50px;
}

.university-first-section .list_style {
  margin: 140px 0;
}

.university-first-section .list_style ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
  margin: 0;
}

.university-first-section .list_style li {
  width: 50%;
  padding-right: 15px;
}

.university-first-section .list_style li + li {
  margin: 0;
}

/* ---------------------------------------------------------------- */

.university-main-section {
  width: 100%;
  position: relative;
  padding-top: 130px;
}

.first_section_university {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.university-title .hme-life-heading {
  text-align: left;
  margin-bottom: 45px;
}

.university-title {
  width: 60%;
}

.university-content {
  width: 40%;
}

.university-content p {
  margin-bottom: 35px;
}

.university-content p span {
  font-weight: bold;
  margin-top: 10px;
}

/* ---------------------------------------------------------------- */

.university-list {
  --space: 2%;
  --width: 46%;
  margin-left: -2%;
  margin-right: -2%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  margin: 0 calc(var(--space) * -1);
}

.university-list li {
  width: var(--width);
  margin: 0 var(--space);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  border: 1px solid #1ea270;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.university-list p {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.university-list img {
  margin-right: 20px;
}

/*------------------------------------------------------------------
4. inclusion
-------------------------------------------------------------------*/

.arabic-first-section {
  text-align: center;
  padding: 90px 0px 40px;
}

.arabic-second-section {
  width: 100%;
  padding: 40px 0 40px;
}

.arabic-second-section ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
  justify-content: space-between;
}

.arabic-second-section ul li {
  --radius: 40px;
  width: 47%;
  padding: 30px 50px 20px 60px;
  border-left: 3px solid #1568b8;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 26px -3px rgba(60, 97, 83, 0.47);
  -moz-box-shadow: 0px 0px 26px -3px rgba(60, 97, 83, 0.47);
  box-shadow: 0px 0px 26px -3px rgba(60, 97, 83, 0.47);
  -webkit-border-bottom-right-radius: var(--radius);
  -moz-border-bottom-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  -webkit-border-top-right-radius: var(--radius);
  -moz-border-top-right-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.arabic-second-section ul li h4 {
  font-family: "Breathing_Personal";
  font-size: 90px;
  color: #1ea270;
  font-weight: 400;
  line-height: initial;
}

.arabic-second-section ul li h3 {
  font-size: 270px;
  color: #e5ebf4;
  position: absolute;
  top: 23px;
  right: 40px;
  line-height: 200px;
  z-index: -1;
}

.arabic-second-section ul li p {
  font-weight: 600;
}

.arabic-second-section ul li:nth-child(2) {
  border-left: 3px solid #1ea270;
}

.arabic-second-section ul li:nth-child(2) h3 {
  color: #dbf0e8;
}

.arabic-second-section ul li:nth-child(2) h4 {
  color: #1568b8;
}

.arabic-tab-section {
  padding: 40px 0px 0px;
  text-align: center;
}

.arabic-tab-section .resp-tabs-list {
  justify-content: center;
  display: flex;
}

.arabic-tab-section .resp-tab-content {
  margin-top: 35px;
  background-color: transparent;
  border: none;
}

.arabic-tab-section .resp-tab-content p {
  margin: 0;
}

.arabic-tab-section .resp-tab-content p + p {
  margin-top: 20px;
}

.arabic-tab-section .resp-tabs-container {
  background-color: transparent;
}

.arabic-tab-section .resp-tabs-list li.resp-tab-active {
  background-image: url(assets/images/li-hover.png);
  background-color: #1ea270;
  background-repeat: no-repeat;
  background-position: right 10px center;
  color: #fff;
}

.arabic-tab-section .resp-tabs-list li {
  display: inline-block;
  line-height: 22px;
  font-weight: 500;
  padding: 14px 80px 14px 30px !important;
  font-size: 18px;
  margin: 0px 8px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  border: 1px solid #1ea270;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* ------------------------------------------------------------------ */

.language-first-section {
  padding: 160px 0;
  position: relative;
}

.language-first-section .title-block {
  margin-bottom: 50px;
}

/* ------------------------------------------------------------------ */

.language-four-section .flag-list {
  margin: 50px 0;
}

/* ------------------------------------------------------------------ */

.first_section_language-inner {
  padding-right: 12%;
}

.first_section_language-inner .hme-life-heading {
  text-align: left;
  margin-bottom: 45px;
}

.first_section_language-inner .hme-life-heading h2::after {
  max-width: 380px;
}

.hme-life-heading h3 {
  margin-bottom: 5px;
}

.language-second-section .content h2 {
  font-size: 168px;
  line-height: 1;
  color: var(--color-secondary);
  opacity: 0.5;
}

.arabic-tab {
  margin-top: 35px !important;
}

.language-third-section {
  padding: 90px 0 200px 0;
}

.language-third-section .side_by_side {
  align-items: center;
  row-gap: 35px;
}

.language-third-section .content h2 {
  font-size: 30px;
  line-height: 1;
}

.language-third-section .image {
  position: relative;
}

.language-third-section .image .pos_text {
  position: absolute;
  bottom: 21px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 100px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  display: inline-block;
  width: fit-content;
}

.language-four-section .content {
  padding: 130px 0 90px 0;
  color: #ffffff;
  margin-left: auto;
  max-width: 60%;
}

.language-four-section .content h2 {
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
}

.language-four-section .content p {
  margin: 0;
}

.language-four-section .content p + p {
  margin-top: 30px;
}

.language-fifth-section {
  padding: 140px 0 0 0;
}

.language-fifth-section .side_by_side {
  flex-direction: row-reverse;
  row-gap: 35px;
}

.language-fifth-section .side_by_side .content {
  padding-top: 100px;
  padding-left: 0;
  padding-right: var(--space);
}

.language-fifth-section .side_by_side .image img {
  position: relative;
}

.language-fifth-section .side_by_side .image img::after {
  --size: 218px;
  width: var(--size);
  height: var(--size);
  position: absolute;
  right: 0;
  bottom: 0;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.language-fifth-section .side_by_side .content h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 34px;
}

.tuition_second_block .resp-tabs-list li {
  display: inline-block;
  line-height: 22px;
  font-weight: 500;
  width: 100%;
  padding: 16px 30px 16px 40px !important;
  font-size: 18px;
  background: #f4f4f4;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tuition_second_block .resp-tabs-list li.resp-tab-active {
  background-color: #1ea270;
  color: #fff;
}

.tuition_second_block .resp-tabs-list li + li {
  margin-top: 15px;
}

.tution-fee-tab {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap;
}

.tuition_second_block .resp-tab-content {
  border: none;
  padding: 0px;
}

.tuition_second_block .resp-tabs-container {
  background-color: transparent;
}

.tuition_second_block .resp-tab-content p {
  margin-bottom: 20px;
}

.tuition_second_block .resp-tab-content p + p {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------------------------- */

.block-image-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.block-image-content .content {
  width: 41%;
}

.block-image-content .content h4 {
  font-size: 30px;
  font-weight: 400;
  font-family: "Proxima-reguler";
  margin-bottom: 55px;
}

.block-image-content .content .link {
  color: var(--color-secondary);
}

.block-image-content .content .link:hover {
  color: var(--color-secondary-hover);
}

.block-image-content .image {
  width: 48%;
  display: flex;
}

.block-image-content .image img {
  --size: 720px;
  width: var(--size);
  height: var(--size);
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.block-image-content .image::after {
  --size: 264px;
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: var(--size);
  height: var(--size);
  background: var(--bg);
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.block-image-content + .block-image-content {
  margin-top: 70px;
  flex-direction: row-reverse;
}

.block-image-content:first-child .image {
  justify-content: flex-end;
}

.block-image-content:first-child .image::after {
  right: 0;
}

.block-image-content:nth-child(2) .image::after {
  left: 0;
}

/* --------------------------------------------------------------------------------------------- */

.five-logos {
  margin-top: 140px;
  display: flex;
  justify-content: center;
}

/* --------------------------------------------------------------------------------------------- */

.scholarship-first-section {
  padding: 160px 0;
}

.scholarship-first-section .extra-content,
.scholarship-third-section .extra-content {
  margin-top: 120px;
}

.scholarship-first-section .extra-content h3,
.scholarship-third-section .extra-content h3 {
  margin-bottom: 30px;
}

.scholarship-first-section .extra-content p,
.scholarship-third-section .extra-content p {
  font-size: 20px;
  font-weight: 600;
}

.scholarship-first-section .list_style ul {
  margin: 60px 0 0 0;
}

/* ------------------------------------------ISAM Form--------------------------------------------------- */

.admissionsEnquiry .panel-group .panel-heading {
  background-color: #27a777 !important;
}
.admissionsEnquiry .panel-group .panel-heading .panel-title {
  color: #ffffff !important;
}
.admissionsEnquiry
  .formGroup.formTypeId-3
  button[id^="grp_applicantFormLink_InstanceID_"],
.admissionsEnquiry
  .formGroup.formTypeId-3
  button[id^="grp_contactFormLink_InstanceID_"],
.admissionsEnquiry
  .formGroup.formTypeId-4
  button[id^="grp_paymentFormLink_InstanceID_"],
.admissionsEnquiry .formGroup.formTypeId-4 input.isams_submit_button {
  background: #27a777 !important;
  border: 0 !important;
  border-radius: 20px;
}
.admissionsEnquiry
  .panel-group
  .formfield
  .panel-heading
  .panel-title
  span.text-muted::before,
.admissionsEnquiry .panel-group .panel-heading .text-muted {
  background: transparent;
  color: #eee !important;
}
.admissionsEnquiry
  .panel-group
  .formfield
  .panel-heading
  .panel-title
  span::before {
  background: #1568b8 !important;
}

.admissionsEnquiry
  .formGroup.formTypeId-3
  button[id^="grp_applicantFormLink_InstanceID_"]:hover,
.admissionsEnquiry
  .formGroup.formTypeId-3
  button[id^="grp_applicantFormLink_InstanceID_"]:focus,
.admissionsEnquiry
  .formGroup.formTypeId-3
  button[id^="grp_contactFormLink_InstanceID_"]:hover,
.admissionsEnquiry
  .formGroup.formTypeId-3
  button[id^="grp_contactFormLink_InstanceID_"]:focus,
.admissionsEnquiry
  .formGroup.formTypeId-4
  button[id^="grp_paymentFormLink_InstanceID_"]:hover,
.admissionsEnquiry
  .formGroup.formTypeId-4
  button[id^="grp_paymentFormLink_InstanceID_"]:focus,
.admissionsEnquiry .formGroup.formTypeId-4 input.isams_submit_button:hover,
.admissionsEnquiry .formGroup.formTypeId-4 input.isams_submit_button:focus,
.btn btn-primary ng-binding,
.btn btn-primary ng-binding:hover,
.btn btn-primary ng-binding:focus {
  background: #0f8356 !important;
  border: 0 !important;
}
.admissionsEnquiry .panel-group .panel-heading,
.admissionsEnquiry .panel-group .panel {
  border-radius: 10px !important;
}

/* --------------------------------------------------------------------------------------------- */
.circle-7378{
  --size: 350px;
  background-color: #1ea270;
  top: 0;
  left: -100px;
  right: 0;
  bottom: auto;
}

.circle-4327 {
--size: 50px;
background-color: #a4d02a;
top: 0;
left: auto;
right: 130px;
bottom: auto;
}


.circle-7379{
--size: 350px;
background-color: #1ea270;
top: 0;
left: -100px;
right: 0;
bottom: auto;
}

.circle-4328{
 --size: 50px;
 background-color: #a4d02a;
 top: 0;
 left: auto;
 right: 130px;
 bottom: auto;
}

/* --------------------------------------------------------------------------------------------- */

.application-process .table_section table tbody td {
  padding: 25px;
}

#rev_slider_1_1_wrapper .zeus.tparrows {
  min-height: 42px !important;
  min-width: 42px !important;
}

#rev_slider_1_1_wrapper .zeus.tparrows.tp-leftarrow:before {
  font-size: 0 !important;
  line-height: 42px;
  background: url(assets/images/slider_arrow-left.png) no-repeat center;
}

#rev_slider_1_1_wrapper .zeus.tparrows.tp-rightarrow:before {
  font-size: 0 !important;
  line-height: 42px;
  background: url(assets/images/slider_arrow-right.png) no-repeat center;
}

.eb-slider-wrapper.eb-slider-1iovv {
  padding-bottom: 0 !important;
}

.ib-learner-profiles .wp-block-cover__inner-container {
  transition: transform 0.3s ease-in-out;
  cursor: default;
}

.ib-learner-profiles
  .wp-block-cover:not(:hover)
  .wp-block-cover__inner-container {
  transform: translateY(85%);
}

/* ----------------home insta section-------------- */

#sbi_images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  height: 100%;
  padding: 0 !important;
}

.sbi_item {
  min-height: 215px;
  overflow: hidden;
}

#sbi_load,
.sbi_header_link {
  display: none;
}

.sbi_header_text h3 {
  margin: 0;
  line-height: 1;
}

.sbi_header_link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  display: none;
}

.sbi_photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100% !important;
}

.sbi_lightbox_carousel_icon {
  width: 20px;
  color: #fff;
}

.sbi_follow_btn a {
  padding: 6px;
}

.sbi_follow_btn .fa-instagram {
  width: 20px;
}

.sbi_photo_wrap {
  height: 100%;
}

.sbi_header_img {
  width: 30px;
}

.sbi_playbtn {
  width: 20px;
}

.sbi-screenreader {
  display: none;
}

#sb_instagram {
  padding: 0 !important;
}

.behappy {
  font-weight: 400;
  color: #000000;
  line-height: 1;
  margin: -20px 0 0 0;
}

.behappy a:hover {
  color: var(--color-third);
}

/* .sbi_item img{
    width:100%;
    height:100%;
    object-fit: cover;
    vertical-align: bottom;
 } */

.news_carousel .owl-stage {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.sb_instagram_header{
    padding:0 !important;
    margin:0 !important;
}

@media (min-width: 768px) {
  .sbi_item:nth-child(1) {
    grid-row-start: 2;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-column-end: 2;
    transform: translateY(-50%);
  }
  .sbi_item:nth-child(2) {
    grid-row-start: 2;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-column-end: 3;
  }
  .sbi_item:nth-child(3) {
    grid-row-start: 1;
    grid-column-start: 2;
    grid-row-end: 2;
    grid-column-end: 3;
  }
  .sbi_item:nth-child(4) {
    grid-row-start: 1;
    grid-column-start: 3;
    grid-row-end: 3;
    grid-column-end: 5;
    transform: translateY(-50px);
  }
  .sbi_item:nth-child(5) {
    grid-row-start: 1;
    grid-column-start: 5;
    grid-row-end: 2;
    grid-column-end: 6;
  }
  .sbi_item:nth-child(6) {
    grid-row-start: 2;
    grid-column-start: 5;
    grid-row-end: 3;
    grid-column-end: 6;
  }
  .sbi_item:nth-child(7) {
    grid-row-start: 1;
    grid-column-start: 6;
    grid-row-end: 2;
    grid-column-end: 7;
    transform: translateY(50%);
  }
}

@media (max-width: 1200px) {
  .sbi_item {
    min-height: 160px;
  }
}

@media (max-width: 767px) {
  #sbi_images {
    grid-template-columns: repeat(3, 1fr);
  }
  .sbi_item {
    min-height: 120px;
  }
  .behappy {
    margin: 20px 0 0 0;
  }
}

@media (max-width: 500px) {
  #sbi_images {
    grid-template-columns: repeat(2, 1fr);
  }
}


fieldset {
    border: none;
}

.frm_form_field .nice-select .option{
	font-size:16px;
}

.frm_form_field .nice-select{
	width: 100% !important;
	padding: 0 15px;
	height:44px;
	line-height:44px;
	border: solid 1px #ced4da;
	font-size:16px;
	color:#000;
	border-radius:4px;
}

.frm_form_field .nice-select:after{
	right:10px;
}
.frm_prev_page,
.frm_button_submit {
    padding: 10px 30px;
	color:#ffffff;
    background: var(--color-primary);
    border: none;
    cursor: pointer;
	border-radius:4px;
}

.frm_prev_page:hover,
.frm_button_submit:hover {
	background: var(--color-primary-hover);
}

.frm_dropzone.frm_single_upload {
    max-width: 100%;
    width: 100%;
}

.dz-message.needsclick svg {
    max-width: 50px;
    margin: auto;
}

.frm_dropzone.dz-clickable .dz-message, 
.frm_dropzone .frm_upload_icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.form-field label,
.frm_primary_label{
	display:block;
	margin-bottom:7px;
}

.form-field input:not([type="radio"], input[type="checkbox"], input[type="button"]) {
    display: block;
    width: 100%;
    height: 44px;
	padding: 0 15px;
    font-size: 16px;
    font-family: "Proxima-reguler";
    background-color: #fff;
    border: 1px solid #ced4da;
	border-radius:4px;
}

.frm_combo_inputs_container,
.frm_form_fields .frm_fields_container {
    row-gap: 20px;
}

.frm_error{
	font-size:12px;
	float:right;
	color:red;
}
.frm_add_form_row + .frm_remove_form_row{
	margin-left:7px;
}


