@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Theme Name: Template Name – HTML5 Template
    Author: Theme Pure
    Support: basictheme@gmail.com
    Description: Template Name  – HTML5 Template
    Version: 1.0

-----------------------------------------------------------------------------------
/*----------------------------------------*/
/*  01. THEME DEFAULT CSS START
/*----------------------------------------*/
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'Roboto', sans-serif;
  --tp-ff-heading: 'Roboto', sans-serif;
  --tp-ff-p: 'Roboto', sans-serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**header__bottom
  @color declaration
  */
  --tp-common-white: #ffffff;
  --tp-common-black: #031220;
  --tp-common-black-2: #120101;
  --tp-common-black-3: #0C140F;
  --tp-common-black-4: #000000;
  --tp-common-black-5: #0e1133;
  --tp-common-green: #26C089;
  --tp-common-green-2: #3E8454;
  --tp-common-green-3: #27AA4D;
  --tp-common-green-4: #20AD96;
  --tp-common-blue: #4356FF;
  --tp-common-blue-2: #4270FF;
  --tp-common-blue-3: #3C66ED;
  --tp-common-blue-4: #3083FF;
  --tp-common-cream: #FFF1E0;
  --tp-common-pink: #FF6470;
  --tp-common-pink-2: #FC4C56;
  --tp-common-orange: #F37F43;
  --tp-common-orange-2: #EE6002;
  --tp-common-orange-3: #FF9F4B;
  --tp-common-purple: #E33CFF;
  --tp-common-purple-2: #E64DFF;
  --tp-common-yellow: #F5B455;
  --tp-common-yellow-2: #F47F42;
  --tp-common-yellow-3: #F4930E;
  --tp-common-yellow-4: #FFAA2C;
  --tp-common-yellow-5: #FF8D00;
  --tp-common-violet: #6151FB;
  --tp-common-violet-2: #A794C8;
  --tp-header-primary: #031220;
  --tp-header-2: #120101;
  --tp-grey-1: #F1F1F1;
  --tp-grey-2: #F5F6F8;
  --tp-grey-3: #F8F8F8;
  --tp-grey-4: #F7F7F7;
  --tp-grey-5: #F5F5F5;
  --tp-grey-6: #DCDCDC;
  --tp-grey-7: #F9F9F9;
  --tp-grey-8: #F4FBF9;
  --tp-grey-9: #F0F8F7;
  --tp-grey-10: #F3F3F3;
  --tp-text-body: #49535B;
  --tp-text-1: #49535B;
  --tp-text-2: #555C63;
  --tp-text-3: #777A7C;
  --tp-text-4: #4B535A;
  --tp-text-5: #4A545C;
  --tp-text-6: #6F7377;
  --tp-text-7: #6B7882;
  --tp-text-8: #788086;
  --tp-text-9: #6B737A;
  --tp-text-10: #828282;
  --tp-text-11: #5F6160;
  --tp-text-12: #565958;
  --tp-text-13: #868D94;
  --tp-text-14: #56595C;
  --tp-text-15: #a1a2ab;
  --tp-theme-1: #3D6CE7;
  --tp-theme-2: #258E46;
  --tp-theme-3: #007A70;
  --tp-border-1: #dedede;
  /**
  @font weight declaration
  */
  --tp-fw-normal: normal;
  --tp-fw-elight: 200;
  --tp-fw-light: 300;
  --tp-fw-regular: 400;
  --tp-fw-medium: 500;
  --tp-fw-sbold: 600;
  --tp-fw-bold: 700;
  --tp-fw-ebold: 800;
  --tp-fw-black: 900;
  /**
  @font size declaration
  */
  --tp-fz-body: 14px;
  --tp-fz-p: 14px;
  --tp-fz-h1: 40px;
  --tp-fz-h2: 36px;
  --tp-fz-h3: 24px;
  --tp-fz-h4: 20px;
  --tp-fz-h5: 16px;
  --tp-fz-h6: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---------------------------------
    typography css start 
---------------------------------*/
body {
  font-family: var(--tp-ff-body);
  font-size: var(--tp-fz-body);
  font-weight: normal;
  color: var(--tp-text-body);
  line-height: 26px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tp-ff-heading);
  color: var(--tp-header-primary);
  margin-top: 0px;
  font-weight: var(--tp-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1 {
  font-size: var(--tp-fz-h1);
}

h2 {
  font-size: var(--tp-fz-h2);
}

h3 {
  font-size: var(--tp-fz-h3);
}

h4 {
  font-size: var(--tp-fz-h4);
}

h5 {
  font-size: var(--tp-fz-h5);
}

h6 {
  font-size: var(--tp-fz-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--tp-ff-p);
  font-size: var(--tp-fz-p);
  font-weight: var(--tp-fw-normal);
  color: var(--tp-text-body);
  margin-bottom: 15px;
  line-height: 24px;
}

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

::selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--tp-common-black);
  font-size: var(--tp-fz-body);
  opacity: 1;
}

*::placeholder {
  color: var(--tp-common-black);
  font-size: var(--tp-fz-body);
  opacity: 1;
}

/*---------------------------------
    common classes css start 
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.logo {
	overflow: hidden;
}

.logo img {
	height: 116px;
	width: auto;
	margin-top: -16px;
	margin-bottom: -16px;
}
/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: rgba(var(--tp-common-black), 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

.sub-menu-toggle {
  display: none;
}

/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: var(--tp-grey-1);
}

.grey-bg-2 {
  background: var(--tp-grey-2);
}

.grey-bg-3 {
  background: var(--tp-grey-3);
}

.grey-bg-4 {
  background: var(--tp-grey-4);
}

.grey-bg-9 {
  background: var(--tp-grey-9);
}

.white-bg {
  background: var(--tp-common-white);
}

/* header btn */
.header-btn {
  display: inline-block;
  height: 34px;
  line-height: 34px;
  text-align: center;
  font-size: 14px;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  font-weight: 500;
  text-transform: capitalize;
  padding: 0 25px;
}
.header-btn:hover, .header-btn:focus {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

/* theme btn */
.tp-btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
  text-transform: capitalize;
  /* green btn */
}
.tp-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}
.tp-btn:focus {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}
.tp-btn-2 {
  padding: 0 40px;
  height: 45px;
  line-height: 45px;
}

.link-btn-2 {
  position: relative;
  font-size: 16px;
  color: var(--tp-text-11);
  font-weight: 500;
  padding-right: 21px;
  display: inline-block;
}
.link-btn-2 i {
  font-size: 14px;
  position: absolute;
  top: 12px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}
.link-btn-2 i:first-child {
  right: 10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2 i:last-child {
  right: 0;
}
.link-btn-2:hover {
  color: var(--tp-theme-1);
}
.link-btn-2:hover i:first-child {
  right: 0;
  visibility: visible;
  opacity: 1;
}
.link-btn-2:hover i:last-child {
  right: -10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2.link-prev {
  padding-right: 0;
  padding-left: 21px;
}
.link-btn-2.link-prev i:first-child {
  left: 10%;
  right: auto;
}
.link-btn-2.link-prev i:last-child {
  left: 0;
  right: auto;
}
.link-btn-2.link-prev:hover i:first-child {
  left: 0%;
  right: auto;
}
.link-btn-2.link-prev:hover i:last-child {
  left: -10%;
  right: auto;
}

.hamurger-btn {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: 0;
}
.hamurger-btn span {
  display: inline-block;
  width: 100%;
  background: var(--tp-common-black);
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  opacity: 1;
  left: 0;
  z-index: 1;
}
.hamurger-btn span:nth-child(1) {
  top: 0;
}
.hamurger-btn span:nth-child(2) {
  top: 10px;
}
.hamurger-btn span:nth-child(3) {
  top: 20px;
}

/* section title css start */
.section__title {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 3px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section__title {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .section__title {
    font-size: 32px;
  }
}
.section__title-wrapper p {
  font-size: 16px;
}
.section__title-44 {
  font-size: 44px;
}
@media (max-width: 575px) {
  .section__title-44 {
    font-size: 35px;
  }
}
.section__title-pre-3 {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: #015493;
  display: inline-block;
  margin-bottom: 6px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes dash {
  100% {
    stroke-dashoffset: -50;
  }
}
.header__info ul li {
  list-style: none;
  display: inline-block;
  margin-right: 20px;
}
.header__info ul li:last-child {
  margin-right: 0;
}
.header__info ul li a {
  color: #fff;
  font-size: 13px;
}
.header__info ul li a:hover {
  color: #a8aebe;
}
.header__info ul li a i {
  margin-right: 5px;
}
.header__info ul li a svg {
  width: 13px;
  height: 13px;
  margin-right: 5px;
}
.header__info ul li a svg path {
  fill: #fff;
}
.header__border {
  border-bottom: 1px solid rgba(3, 18, 32, 0.07);
}
.header__search-input {
  position: relative;
}
.header__search-input input {
  width: 100%;
  height: 40px;
  background-color: var(--tp-grey-1);
  border: 1px solid var(--tp-grey-1);
  padding: 0 20px;
  padding-right: 60px;
}
.header__search-input input::-webkit-input-placeholder {
  color: var(--tp-text-3);
}
.header__search-input input:-moz-placeholder {
  color: var(--tp-text-3);
}
.header__search-input input::-moz-placeholder {
  color: var(--tp-text-3);
}
.header__search-input input:-ms-input-placeholder {
  color: var(--tp-text-3);
}
.header__search-btn {
  position: absolute;
  top: 46%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  font-size: 16px;
  color: var(--tp-common-black);
  padding-left: 17px;
  background-color: var(--tp-grey-1);
}
.header__search-btn::after {
  position: absolute;
  content: "";
  left: 0;
  top: 57%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 100%;
  width: 1px;
  background-color: rgba(3, 18, 32, 0.1);
}

.header__login {
  /* header login 2 */
}
.header__login a {
  color:  #fff;
}
.header__login a:hover {
  color: #dee2ee;
}
.header__login a svg {
  width: 13px;
  height: 13px;
  margin-right: 5px;
}
.header__login a svg path {
  stroke: #fff;
}
.header__login-2 {
  border-left: 1.5px solid rgba(12, 20, 15, 0.08);
}

.header__bottom {
  background: #f0f8f7;
  box-shadow: 0px 30px 50px rgba(26, 31, 35, 0.07);
}

.header__top {
  background: #4028a2;
  background: linear-gradient(90deg, rgba(64,40,162,1) 0%, rgba(230,133,214,1) 100%);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header__bottom {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__bottom-right {
    padding-left: 0;
  }
}
.header__hamburger {
  margin-top: 3px;
}

.header__sticky.header__sticky {
  position: fixed !important;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  z-index: 99;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  background: var(--tp-common-white);
}

form.fluent_form_3 .ff-btn-submit {
  background-color: #2962FF !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu {
    margin-left: 50px;
  }
}
.main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-right: 13px;
}
.main-menu ul li a {
  display: inline-block;
  font-size: 14px;
  color: var(--tp-common-black-2);
  padding: 23px 0;
  font-weight: 700;
}
.main-menu ul li.has-dropdown > a {
  position: relative;
}
.main-menu ul li.has-dropdown > a::after {
  content: "\f107";
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
  transform: translateY(1px);
  font-size: 14px;
  color: var(--tp-common-black);
  font-family: var(--tp-ff-fontawesome);
  font-weight: 400;
  margin-left: 5px;
  display: inline-block;
}
.main-menu ul li .submenu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 200px;
  padding: 17px 0;
  padding-bottom: 15px;
  background: var(--tp-common-white);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  -moz-box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  -ms-box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  -o-box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
  z-index: 11;
  border-top: 3px solid var(--tp-theme-1);
}
.main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.main-menu ul li .submenu li > a {
  width: 100%;
  display: block;
  padding: 3px 30px;
  text-transform: capitalize;
  color: var(--tp-text-1);
  font-weight: 500;
  position: relative;
}
.main-menu ul li .submenu li > a::after {
  right: 30px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.main-menu ul li .submenu li .submenu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.main-menu ul li .submenu li:hover > a {
  color: var(--tp-theme-1);
}
.main-menu ul li .submenu li:hover > a::after {
  color: var(--tp-theme-1);
}
.main-menu ul li .submenu li:hover > a::before {
  left: 0;
  right: auto;
  width: 100%;
}
.main-menu ul li .submenu li:hover > .submenu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}
.main-menu ul li:hover > a {
  color: var(--tp-theme-1);
}
.main-menu ul li:hover > a::after {
  color: var(--tp-theme-1);
}
.main-menu ul li:hover > .submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu-mobile {
    margin-left: 0;
  }
}
.main-menu-mobile ul li {
  margin-right: 33px;
}
.main-menu-mobile ul li:hover > a {
  color: var(--tp-theme-3);
}
.main-menu-mobile ul li:hover > a::after {
  color: var(--tp-theme-3);
}
.main-menu-mobile ul li.has-dropdown > a::after {
  color: var(--tp-common-black);
}
.main-menu-mobile ul li.has-dropdown:hover a::after {
  color: var(--tp-theme-3);
}
.main-menu-mobile ul li .submenu li a::after {
  background-color: var(--tp-common-black);
}
.main-menu-mobile ul li .submenu li:hover a {
  color: var(--tp-theme-3);
}
.main-menu-mobile ul li .submenu li:hover a::after {
  background-color: var(--tp-theme-3);
}
.main-menu-border {
  position: relative;
}
.main-menu-border::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background-color: rgba(12, 20, 15, 0.14);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .main-menu-border::after {
    display: none;
  }
}
.main-menu-icon svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* mobile menu css */
.mobile__menu {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.mobile__menu.header__sticky {
  visibility: visible;
  opacity: 1;
}

/*----------------------------------------*/
/*  04. SLIDER CSS START
/*----------------------------------------*/
.slider__height {
  min-height: 500px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider__height {
    min-height: 645px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider__height {
    min-height: 545px;
  }
}
.slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider__overlay {
  position: absolute;
}
.slider__overlay::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 1, 9, 0.8) -2.84%, rgba(0, 2, 17, 0) 67.7%, rgba(0, 2, 17, 0.1) 99.11%);
  background: -o-linear-gradient(0deg, rgba(0, 1, 9, 0.8) -2.84%, rgba(0, 2, 17, 0) 67.7%, rgba(0, 2, 17, 0.1) 99.11%);
  background: -ms-linear-gradient(0deg, rgba(0, 1, 9, 0.8) -2.84%, rgba(0, 2, 17, 0) 67.7%, rgba(0, 2, 17, 0.1) 99.11%);
  background: -moz-linear-gradient(0deg, rgba(0, 1, 9, 0.8) -2.84%, rgba(0, 2, 17, 0) 67.7%, rgba(0, 2, 17, 0.1) 99.11%);
  background: -webkit-linear-gradient(0deg, rgba(0, 1, 9, 0.8) -2.84%, rgba(0, 2, 17, 0) 67.7%, rgba(0, 2, 17, 0.1) 99.11%);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider__overlay::after {
    width: 150%;
  }
}
.slider__content span {
  display: inline-block;
  font-size: 15px;
  font-weight: var(--tp-fw-medium);
  color: var(--tp-common-white);
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .slider__content span {
    margin-bottom: 10px;
  }
}
.slider__content p {
  font-size: 22px;
  line-height: 30px;
  color: var(--tp-common-white);
  padding-right: 10px;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .slider__content p {
    font-size: 18px;
    line-height: 26px;
  }
}

.slider__title {
  font-size: 74px;
  line-height: 1.1;
  color: var(--tp-common-white);
  font-weight: 900;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider__title {
    font-size: 68px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider__title {
    font-size: 64px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider__title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .slider__title {
    font-size: 30px;
  }
}

@-webkit-keyframes hero-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@-moz-keyframes hero-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@-ms-keyframes hero-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes hero-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@-webkit-keyframes hero-shadow {
  0% {
    transform: translatey(-15px);
  }
  100% {
    transform: translatey(15px);
  }
}
@-moz-keyframes hero-shadow {
  0% {
    transform: translatey(-15px);
  }
  100% {
    transform: translatey(15px);
  }
}
@-ms-keyframes hero-shadow {
  0% {
    transform: translatey(-15px);
  }
  100% {
    transform: translatey(15px);
  }
}
@keyframes hero-shadow {
  0% {
    transform: translatey(-15px);
  }
  100% {
    transform: translatey(15px);
  }
}

.features__inner {
  margin-top: -70px;
  padding: 40px 60px;
  padding-bottom: 10px;
  -webkit-box-shadow: 0px 30px 50px rgba(26, 31, 35, 0.07);
  -moz-box-shadow: 0px 30px 50px rgba(26, 31, 35, 0.07);
  -ms-box-shadow: 0px 30px 50px rgba(26, 31, 35, 0.07);
  -o-box-shadow: 0px 30px 50px rgba(26, 31, 35, 0.07);
  box-shadow: 0px 30px 50px rgba(26, 31, 35, 0.07);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features__inner {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 575px) {
  .features__inner {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features__inner .row [class*=col-]:nth-child(2) .features__border-right {
    padding-left: 13px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features__inner .row [class*=col-]:nth-child(2) .features__border-right::after {
    display: none;
  }
}
.features__item {
  padding-right: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features__item {
    padding-right: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features__item {
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .features__item {
    padding: 0;
  }
}
@media (max-width: 575px) {
  .features__icon {
    margin-bottom: 20px;
  }
}
.features__icon i {
  font-size: 45px;
  color: var(--tp-theme-1);
}
.features__icon svg {
  height: 45px;
  width: 45px;
}
.features__content p {
  line-height: 20px;
  margin-bottom: 10px;
}
.features__title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 5px;
}
.features__title a:hover {
  color: var(--tp-theme-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about__content {
    padding-left: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__content {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about__content {
    margin-top: 50px;
    padding-left: 0;
  }
}
.about__content p {
  font-size: 16px;
  line-height: 28px;
  color: var(--tp-text-5);
  margin-bottom: 30px;
}
.about__list ul li {
  font-size: 16px;
  color: var(--tp-common-black);
  list-style: none;
  margin-bottom: 10px;
}
.about__list ul li i {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-color: rgba(38, 192, 137, 0.08);
  color: var(--tp-common-green);
  font-size: 13px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin-right: 7px;
}
.about__list ul li:hover i {
  color: var(--tp-common-white);
  background-color: var(--tp-common-green);
}
.about__list ul li h2 {
  display: contents;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.about__list ul li a {
  font-size: 16px;
}
.about__list table td,
.about__list table th {
  border: 1px solid #e2e2e2;
  padding: 10px 16px;
  text-align: left;
  font-size: 16px;
}

.about__list table tr:nth-child(2n) {
  background-color: #f7f7f7;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about__thumb-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .about__thumb-left {
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .about__thumb-left img {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__thumb-2 img {
    width: 100%;
  }
}
.about__shape-1 {
  position: absolute;
  z-index: -1;
  left: -11%;
  top: 30%;
}
.about__shape-2 {
  position: absolute;
  left: -24%;
  top: 17%;
  z-index: -1;
}
.about__shape-3 {
  position: absolute;
  right: -7%;
  top: 5%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about__shape-3 {
    right: -4%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about__shape-3 {
    right: -5%;
  }
}
@media (max-width: 575px) {
  .about__shape-3 {
    right: 0;
    top: -4%;
  }
}

.counter__item {
  padding: 45px 45px;
  padding-right: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter__item {
    padding-left: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter__item {
    padding: 45px 20px;
    padding-right: 20px;
  }
}
.counter__item-border {
  position: relative;
}
.counter__item-border::after {
  position: absolute;
  content: "";
  right: -12px;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(61, 108, 231, 0) 0%, #3D6CE7 51.56%, rgba(61, 108, 231, 0) 100%);
  opacity: 0.3;
}
@media (max-width: 575px) {
  .counter__item-border::after {
    right: 0;
    top: auto;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(61, 108, 231, 0) 0%, #3D6CE7 51.56%, rgba(61, 108, 231, 0) 100%);
    bottom: 0;
  }
}
.counter__item-border-2::after {
  background: linear-gradient(180deg, rgba(0, 122, 112, 0) 0%, #007A70 51.56%, rgba(0, 122, 112, 0) 100%);
}
@media (max-width: 575px) {
  .counter__item-border-2::after {
    right: 0;
    top: auto;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 122, 112, 0) 0%, #007A70 51.56%, rgba(0, 122, 112, 0) 100%);
    bottom: 0;
  }
}
.counter__icon i {
  font-size: 35px;
  color: var(--tp-common-black);
}
.counter__icon svg {
  width: 40px;
  height: 40px;
  -webkit-transform: translateY(9px);
  -moz-transform: translateY(9px);
  -ms-transform: translateY(9px);
  -o-transform: translateY(9px);
  transform: translateY(9px);
}
.counter__icon svg path.search, .counter__icon svg path.st1, .counter__icon svg path.star {
  stroke: var(--tp-theme-1);
}
.counter__icon svg path.video {
  fill: var(--tp-theme-1);
}
.counter__content span {
  font-size: 44px;
  font-weight: 600;
  margin-right: 5px;
  color: var(--tp-theme-1);
}
.counter__content p {
  font-size: 14px;
  line-height: 22px;
  color: var(--tp-text-4);
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .counter__inner .row [class*=col-]:nth-child(2) .counter__item-border::after {
    display: none;
  }
}

.course__item {
  padding: 25px 25px;
  -webkit-box-shadow: 0px 1px 2px rgba(26, 31, 35, 0.07);
  -moz-box-shadow: 0px 1px 2px rgba(26, 31, 35, 0.07);
  -ms-box-shadow: 0px 1px 2px rgba(26, 31, 35, 0.07);
  -o-box-shadow: 0px 1px 2px rgba(26, 31, 35, 0.07);
  box-shadow: 0px 1px 2px rgba(26, 31, 35, 0.07);
}
.course__item:hover {
  -webkit-box-shadow: 0px 30px 50px -14px rgba(26, 31, 35, 0.07);
  -moz-box-shadow: 0px 30px 50px -14px rgba(26, 31, 35, 0.07);
  -ms-box-shadow: 0px 30px 50px -14px rgba(26, 31, 35, 0.07);
  -o-box-shadow: 0px 30px 50px -14px rgba(26, 31, 35, 0.07);
  box-shadow: 0px 30px 50px -14px rgba(26, 31, 35, 0.07);
}
.course__item:hover .course__thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.course__item-list {
  padding: 0;
}
.course__item-list .course__title {
  font-size: 36px;
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .course__item-list .course__title {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .course__item-list .course__title {
    font-size: 20px;
  }
}
.course__item-list .course__tag-2 {
  margin-bottom: 10px;
}
.course__item-list .course__thumb img {
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .course__item-list .course__right {
    padding-left: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .course__item-list .course__right {
    padding-left: 50px;
    padding-bottom: 75px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course__item-list .course__right {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 75px;
  }
}
@media (max-width: 575px) {
  .course__item-list .course__right {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .course__item-list .course__content-bottom {
    padding-left: 50px;
    padding-right: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course__item-list .course__content-bottom {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 575px) {
  .course__item-list .course__content-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.course__item-list-2 .course__right {
  padding-left: 50px;
  padding-right: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .course__item-list-2 .course__right {
    padding-left: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .course__item-list-2 .course__right {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 575px) {
  .course__item-list-2 .course__right {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .course__item-list-2 .course__content {
    padding-bottom: 20px;
  }
}
.course__item-list-2 .course__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .course__item-list-2 .course__thumb {
    height: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .course__item-list-2 .course__content-bottom {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.course__right {
  padding-left: 80px;
  padding-right: 70px;
  padding-bottom: 25px;
  position: relative;
  height: 100%;
}

.course__tag-2 a {
  display: inline-block;
  height: 26px;
  line-height: 26px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--tp-common-blue-3);
  background-color: rgba(60, 102, 237, 0.08);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.course__tag-2.pink-bg a {
  color: var(--tp-common-pink-2);
  background-color: rgba(252, 76, 86, 0.08);
}
.course__tag-2.violet-bg a {
  color: var(--tp-common-violet);
  background-color: rgba(97, 81, 251, 0.08);
}
.course__tag-2.yellow-bg a {
  color: var(--tp-common-yellow-2);
  background-color: rgba(244, 127, 66, 0.08);
}
.course__tag-2.blue-bg-2 a {
  color: var(--tp-common-blue-4);
  background-color: rgba(48, 131, 255, 0.08);
}
.course__tag-2.purple-bg a {
  color: var(--tp-common-purple-2);
  background-color: rgba(230, 77, 255, 0.08);
}
.course__title {
  font-size: 20px;
  color: var(--tp-common-black-2);
  font-weight: 500;
}
.course__title a:hover {
  color: var(--tp-theme-1);
}

.course__content {
  padding-top: 23px;
  padding-bottom: 30px;
}
.course__content p {
  color: var(--tp-text-1);
  margin-bottom: 20px;
  font-size: 16px;
}
.course__content .list li {
  margin-left: 30px;
  position: relative;
}

.course__content .list li:before {
  position: absolute;
  content: "✓";
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-color: rgba(38, 192, 137, 0.08);
  color: var(--tp-common-green);
  font-size: 13px;
  font-weight: 700;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  left: -30px;
}
.course__content-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding-left: 80px;
  padding-right: 70px;
  background: var(--tp-common-white);
  padding: 15px 70px 10px 80px;
  border-top: 1px solid #f0f0f5;
}
.right-image .course__content-bottom {
  padding-left: 50px;
}
.right-image .float-end {
  float: left !important;
}
@media (max-width: 575px) {
  .right-image .float-end {
    float: right !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .research__border .row [class*=col-]:nth-child(2) .research__item-border::after {
    display: none;
  }
}
.research__item {
  padding: 40px 40px 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .research__item {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .research__item {
    background-color: var(--tp-common-white);
  }
}
.research__item:hover, .research__item.active {
  background-color: var(--tp-common-white);
}
.research__item-border {
  position: relative;
}
.research__item-border::after {
  position: absolute;
  content: "";
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(3, 18, 32, 0.08);
  width: 1px;
  height: 350px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .research__item-border::after {
    display: none;
  }
}
.research__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--tp-common-black-2);
}
.research__shape-1 {
  position: absolute;
  left: 135px;
  top: 0;
  opacity: 0.3;
  z-index: -1;
}
.research__shape-2 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
  z-index: -1;
}
.research__shape-3 {
  position: absolute;
  right: 85px;
  bottom: 0;
  z-index: -1;
}

.blog__item {
  -webkit-box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
  -moz-box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
  -ms-box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
  -o-box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
  box-shadow: 0px 30px 50px -10px rgba(26, 31, 35, 0.1);
}
.blog__item:hover .blog__thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.blog__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  padding: 0 30px;
  padding-top: 13px;
  padding-bottom: 25px;
}
.blog__title a:hover {
  color: var(--tp-theme-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog__title {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog__shape-1 {
  position: absolute;
  right: 17%;
  bottom: 9%;
  z-index: -1;
  opacity: 0.3;
}
.blog__shape-2 {
  position: absolute;
  right: 14%;
  bottom: 4%;
  z-index: -1;
  opacity: 0.3;
}
.blog__shape-3 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.blog__shape-4 {
  position: absolute;
  left: 17%;
  top: 39%;
  z-index: -1;
}

.footer__logo {
  margin-bottom: 20px;
}
.footer__logo img {
  height: 116px;
  width: auto;
}
.footer__widget-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}
.footer__widget ul li {
  list-style: none;
  line-height: 1;
  margin-bottom: 12px;
}
.footer__widget ul li a {
  font-size: 15px;
  line-height: 1.2;
}
.footer__widget ul li a:hover {
  color: var(--tp-theme-1);
}
.footer__subscribe p {
  margin-bottom: 20px;
}
.footer__copyright {
  font-size: 15px;
  color: #49535b;
  margin-bottom: 0;
  padding: 20px 15px;
  border-top: 1px solid rgba(3, 18, 32, 0.06);
}

.footer-col-4 {
  padding-left: 30px;
}
.sticky-social {
    background: #4028a2;
    background: linear-gradient(180deg, rgba(64,40,162,1) 0%, rgba(230,133,214,1) 100%);
    position: fixed;
    top: 30%;
    z-index: 3;
    text-align: center;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    padding: 20px 12px 8px 8px;
}
.sticky-social i {
    color: #fff;
    font-size: 20px;
    margin-bottom: 12px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-col-4 {
    padding-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-col-4 {
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  .offcanvas__area {
    width: 290px;
  }
}
.offcanvas__area .modal.show .modal-dialog {
  transform: none !important;
}
.offcanvas__area .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(100px, 0px);
}
.offcanvas__area .modal-dialog {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 450px;
  width: 100%;
  height: 100%;
  margin: 0;
  background: var(--clr-common-white);
}
.offcanvas__area .modal-content {
  border: 0;
}
.offcanvas__wrapper {
  position: relative;
  padding: 45px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.offcanvas__close-btn {
  display: inline-block;
  font-size: 16px;
  height: 45px;
  width: 45px;
  line-height: 46px;
  background: var(--tp-theme-1);
  color: #fff;
  border-radius: 50%;
}
.offcanvas__close-btn:hover {
  background: var(--tp-common-black);
}
.offcanvas__top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--tp-border-1);
}
.offcanvas__search {
  position: relative;
}
.offcanvas__search input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-right: 20px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid var(--tp-border-1);
  font-size: 14px;
}
.offcanvas__search input::placeholder {
  color: var(--tp-text-1);
}
.offcanvas__search input:focus {
  border-color: var(--tp-common-black);
}
.offcanvas__search button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--tp-text-1);
}
.offcanvas__contact h4 {
  font-size: 22px;
  margin-bottom: 20px;
}
.offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 20px;
}
.offcanvas__contact ul li:hover i {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-1);
}
.offcanvas__contact ul li:hover a {
  color: var(--tp-common-black);
}
.offcanvas__contact-icon i {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid var(--tp-border-1);
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
}
.offcanvas__contact-text a {
  font-size: 18px;
  font-weight: 500;
  color: var(--tp-text-2);
}
.offcanvas__social ul li {
  display: inline-block;
}
.offcanvas__social ul li:not(:last-child) {
  margin-right: 5px;
}
.offcanvas__social ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  background: var(--tp-grey-1);
  color: var(--tp-theme-1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.offcanvas__social ul li a:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.certificate__content p {
  color: var(--tp-text-11);
  font-size: 18px;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .certificate__content .section__title.section__title-44 {
    font-size: 23px;
  }
}
.certificate__inner {
  padding: 95px 70px 90px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -o-border-radius: 14px;
  -ms-border-radius: 14px;
  border-radius: 14px;
}

@media (max-width: 767px) {
  .certificate__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.certificate__links .play-video {
  display: inline-block;
  height: 44px;
  line-height: 44px;
  text-align: center;
  padding: 0 10px;
  padding-right: 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--tp-common-black);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 1px 2px rgba(3, 18, 32, 0.1);
  -moz-box-shadow: 0px 1px 2px rgba(3, 18, 32, 0.1);
  -ms-box-shadow: 0px 1px 2px rgba(3, 18, 32, 0.1);
  -o-box-shadow: 0px 1px 2px rgba(3, 18, 32, 0.1);
  box-shadow: 0px 1px 2px rgba(3, 18, 32, 0.1);
  background-color: var(--tp-common-white);
}
.certificate__links .play-video i {
  margin-right: 5px;
}
.certificate__links .play-video:hover {
  background-color: var(--tp-theme-3);
  color: var(--tp-common-white);
}
.certificate__links ul {
  margin-left: 30px;
}
@media (max-width: 575px) {
  .certificate__links ul {
    margin-left: 0;
    margin-top: 30px;
  }
}
.certificate__links ul li {
  list-style: none;
  display: inline-block;
}
.certificate__links ul li:not(:last-child) {
  margin-right: 30px;
}
.certificate__links ul li:last-child a::after {
  display: none;
}
.certificate__links ul li a {
  font-size: 15px;
  font-weight: 500;
  color: var(--tp-common-black);
  position: relative;
  padding-right: 30px;
}
.certificate__links ul li a::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background-color: rgba(3, 18, 32, 0.1);
}
.certificate__links ul li a:hover {
  color: var(--tp-theme-3);
}
.certificate__thumb {
  position: absolute;
  right: 45px;
  bottom: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .certificate__thumb {
    right: -20px;
    bottom: -80px;
  }
}

@media (max-width: 767px) {
  .certificate__thumb {
    position: inherit;
    text-align: center;
    width: 100%;
    left: 0;
    display: flow-root;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .certificate__thumb img {
    width: 240px;
  }
}
.footer__social .follow-us {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer__social ul li {
  display: inline-block;
}
.footer__social ul li:not(:last-child) {
  margin-right: 7px;
}
.footer__social ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  -webkit-box-shadow: 0px 1px 2px rgba(26, 31, 35, 0.1);
  -moz-box-shadow: 0px 1px 2px rgba(26, 31, 35, 0.1);
  -ms-box-shadow: 0px 1px 2px rgba(26, 31, 35, 0.1);
  -o-box-shadow: 0px 1px 2px rgba(26, 31, 35, 0.1);
  box-shadow: 0px 1px 2px rgba(26, 31, 35, 0.1);
  color: var(--tp-text-7);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-color: var(--tp-common-white);
}
.footer__social ul li a:hover {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer__social-3 {
    margin-top: 30px;
  }
}
.footer__social-3 ul li a:hover {
  background-color: var(--tp-theme-3);
}


.footer-col-1 {
  padding-right: 115px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-col-1 {
    padding-right: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-col-1 {
    padding-right: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-col-1 {
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .footer-col-1 {
    padding-right: 0;
  }
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--tp-common-black);
  border-top: 1px solid #ebebeb;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--tp-theme-1);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid #ebebeb !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: var(--tp-common-black);
  line-height: 30px;
  top: 0;
  font-weight: 400;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-1);
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--tp-common-black);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  color: var(--tp-common-black);
}

.header-upload-files {
    color: #fff;
    background: #e685d6;
    background: linear-gradient(90deg, #e685d6 0%, #4028a2 100%);
    width: 100%;
    display: block;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    padding: 3px 2px;
    border-radius: 16px;
    font-size:13px;
}

.header-upload-files:hover {
    background: #4028a2;
    color: #fff;
    background: linear-gradient(90deg, #4028a2 0%, #e685d6 100%);
}

@media (max-width: 1199px) {
    .header-upload-files {
        float: right !important;
        width:150px;
        margin-bottom: 16px;
    }
}
