/* This Site Created By Amr Gamal Elsheikh & Mohamed Shushan in 1/1/2025  */

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/

:root {

  --white_color:                  #ffffff;
  --primary_color:                #083032;
  --secondary_color:              #2bbcc2;
  --section_bg_color:             #71f2f7;
  --custom_btn_bg_color:          #4ee8ee;
  --custom_btn_bg_hover_color:    #083032;
  --dark_color:                   #000000;
  --p_color:                      #717275;
  --border_color:                 #2bbcc2;
  --link_hover_color:             #0babaa;

  --title-font-family:            "Text Me One", serif;
  --body-font-family:             "Playwrite AU SA", serif;

  --h1-font-size:                 58px;
  --h2-font-size:                 45px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  16px;
  --menu-font-size:               13px;
  --btn-font-size:                18px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
  --font-weight-bolder:           900;
}

body {
  background-color: var(--white_color);
  font-family: var(--body-font-family);
}

/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark_color);
}

h1,
h2,
h3,
h4,
h6 {
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
  font-family: var(--body-font-family);
}

h5 {
  font-size: var(--h5-font-size);
  font-family: var(--body-font-family);
}

h6 {
  color: var(--primary_color);
  font-size: var(--h6-font-size);
}

p {
  /*color: var(--p_color);*/
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  font-family: var(--title-font-family);
}

ul li {
  color: var(--p_color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary_color);
  text-decoration: none;
}

a:hover {
  color: var(--link_hover_color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.section-overlay {
  background-image: linear-gradient(15deg, #28878b 20%, #2bbcc2 80%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white_color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p_color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary_color);
  color: var(--secondary_color);
}

/*---------------------------------------
  CUSTOM ICON COLOR
-----------------------------------------*/
.custom-icon {
  color: var(--secondary_color);
}

/*---------------------------------------
  CUSTOM BUTTON
-----------------------------------------*/
.custom-btn {
  background: var(--link_hover_color);
  border: 2px solid var(--custom_btn_bg_color);
  border-radius: var(--border-radius-large);
  color: var(--dark_color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
  transition: all 0.3s;
  padding: 8px 20px;
  float: right;
  margin-right: 30px;
}

.custom-btn:hover {
  background: var(--custom_btn_bg_hover_color);
  color: var(--white_color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom_btn_bg_color);
  color: var(--custom_btn_bg_color);
}

.custom-border-btn:hover {
  background: var(--custom_btn_bg_color);
  border-color: transparent;
  color: var(--white_color);
}

.custom-btn-bg-white {
  border-color: var(--white_color);
  color: var(--white_color);
}


/*---------------------------------------
  SITE HEADER
-----------------------------------------*/
.site-header {
  background-image: linear-gradient(15deg, #28878b 0%, #2bbcc2 100%);
  padding-top: 150px;
  padding-bottom: 80px;
}

.site-header .container {
  height: 100%;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--white_color);
}

.site-header .custom-icon {
  color: var(--white_color);
  font-size: var(--h4-font-size);
}

.site-header .custom-icon:hover {
  color: var(--secondary_color);
}

.breadcrumb-item+.breadcrumb-item::before
{
    content: var(--bs-breadcrumb-divider, "");
}

/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.navbar_logo
{
    width: 140px;
    height: 80px;
    filter: drop-shadow(5px 5px 5px #222);
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--secondary_color);
}

.navbar {
  background: transparent;
  border-radius: 0px 0px 150px 150px;
  z-index: 9;
}

@media (max-width:830px)
{
    .navbar
    {
        border-radius: 0px 0px 20px 20px;
    }
}

.navbar-brand,
.navbar-brand:hover {
  display: block;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 3px;
  padding: 7px;
  font-weight: bold;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white_color);
  font-family: var(--title-font-family);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--dark_color);
}

.navbar .dropdown-menu {
  background: var(--secondary_color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--secondary_color);
  position: absolute;
  top: -10px;
  left: 80px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  color: white;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary_color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-icon {
  background: var(--white_color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--secondary_color);
  color: var(--white_color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 20px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white_color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white_color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO
-----------------------------------------*/
.hero-section {
  background: linear-gradient(180deg, #0b1e2d 0%, #1f3a4d 100%);
  color: #ffffff;
  text-align: center;
  padding: 130px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/static/images/pattern-bg.png") center/cover no-repeat;
  opacity: 0.07;
}

.hero-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #d4af37; /* ذهبي */
}

.hero-section h6 {
  font-size: 18px;
  color: #f5f5f5;
  max-width: 800px;
  margin: 0 auto;
}


.hero-section .input-group {
  background-color: var(--white_color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.hero-section h3
{
  font-family: var(--body-font-family);
  color: var(--dark_color);
}
.hero-section h6
{
  font-family: var(--title-font-family);
  line-height: 30px;
  font-size: 18px;
  color: var(--white_color);
}

.personal_image_container
{
  position: relative;
  transition: 0.5s;
}

.personal_image_container img {
  position: absolute;
  transition: 0.5s;
  border-radius: 50%;
}
.personal_image_container:hover img:nth-child(4)
{
  transform: translate(25px, -25px);
  opacity: 1;
  border-radius: 50%;
}
.personal_image_container:hover img:nth-child(3)
{
  transform: translate(20px, -20px);
  opacity: 0.8;
    border-radius: 50%;
}
.personal_image_container:hover img:nth-child(2)
{
  transform: translate(15px, -15px);
  opacity: 0.6;
  border-radius: 50%;
}
.personal_image_container:hover img:nth-child(1)
{
  transform: translate(10px, -10px);
  opacity: 0.4;
  border-radius: 50%;
}

@media (max-width:992px)
{
    personal_image_container
    {
      position: relative;
      transition: 0.5s;
    }
    .personal_image_container img:nth-child(4)
    {
        position: relative;
    }
    .personal_image_container img:nth-child(3)
    {
        position: absolute;
    }
    .personal_image_container img:nth-child(2)
    {
        position: absolute;
    }
    .personal_image_container img:nth-child(1)
    {
        position: absolute;
    }
}

.hero-section .input-group-text {
  background-color: transparent;
  border: 0;
}

.hero-section input[type="search"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.hero-section button[type="submit"] {
  background-color: var(--primary_color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white_color);
  max-width: 150px;
}

/*---------------------------------------
  TOPICS
-----------------------------------------*/
.featured-section {
  background-color: var(--secondary_color);
  border-radius: 0 0 100px 100px;
  padding-bottom: 100px;
}

.featured-section .row {
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
}

.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.custom-block:hover {
  background-color: var(--secondary_color);
  transform: translateY(-3px);
}

.custom-block > a {
  width: 100%;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 35px;
}

.custom-block .rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
  font-family: var(--title-font-family);
}

.custom-block .rounded-pill:hover
{
  background-color: var(--secondary_color);
}

.custom-block-overlay {
  height: 100%;
  /*min-height: 350px;*/
  padding: 0;
}

.custom-block-overlay > a {
  height: 100%;
}

.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
}

.custom-block-overlay-text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
}

.custom-block h6
{
    color: var(--dark_color);
}

.custom-block .points li
{
    color: var(--white_color);
    font-size: 16px;
    margin: 15px;
}


@media (max-width:990px)
{
    .custom-block .points li
    {
       font-size: var(--menu-font-size);
       margin: 14px;
    }
}

@media (max-width:767px)
{
    .custom-block .points li
    {
       font-size: 10px;
       margin: 0px;
    }
}

@media (max-width:435px)
{
    .custom-block .points li
    {
       font-size: 8px;
       margin: 0px;
    }
}
@media (max-width:335px)
{
    .custom-block .points li
    {
       font-size: 6px;
       margin: 0px;
    }
}

.tags
{
    background-color: var(--link_hover_color);
    padding: 5px 10px;
    border-radius: 7px;
    color: black;
}

.tags:hover
{
    color: white;
}

.social-share {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 20px 35px;
}

.social-share .bi-bookmark {
  color: var(--white_color);
  font-size: var(--h5-font-size);
}

.social-share .bi-bookmark:hover {
  color: var(--secondary_color);
}

.bg-design {
  background-color: #00B0FF;
}

.bg-graphic {
  background-color: #00BFA6;
}

.bg-advertising {
  background-color: #F50057;
}

.bg-finance {
  background-color: #536DFE;
}

.bg-music {
  background-color: #F9A826;
}

.bg-education {
  background-color: #00BFA6;
}


/*---------------------------------------
  TOPICS
-----------------------------------------*/
.topics-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.topics-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background-color: var(--section_bg_color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 40px;
}

.topics-listing-page .site-header {
  padding-bottom: 65px;
}

.custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-topics-listing {
  height: inherit;
  margin: 10px;
  width: 31%;
}
@media (max-width : 991px)
{
    .custom-block-topics-listing
    {
      height: inherit;
      margin: 5px;
      width: 100%;
    }
}

/*
.custom-block-topics-listing .custom-block-image {
  width: 200px;
}
*/
.course_img_effect
{
    --s: 15px;  /* size of the frame */
    --b: 2px;   /* border thickness */
    --c: var(--link_hover_color);
    aspect-ratio: 1;
    object-fit: cover;
    padding: calc(2*var(--s));
    --_g: var(--c) var(--b),#0000 0 calc(100% - var(--b)),var(--c) 0;
    background:
    linear-gradient(      var(--_g)) 50%/100% var(--_i,100%) no-repeat,
    linear-gradient(90deg,var(--_g)) 50%/var(--_i,100%) 100% no-repeat;
    outline: calc(var(--w)/2) solid #ed10; /* if you change the 0 to 9 you will get an orange shadow */
    outline-offset: calc(var(--w)/-2 - 2*var(--s));
    transition: .4s;
    cursor: pointer;
    height: 300px;
}

.course_img_effect:hover
{
    outline: var(--b) solid var(--c);
    outline-offset: calc(var(--s)/-2);
    --_i: calc(100% - 2*var(--s));
}

.know_more_btn
{
    color: var(--link_hover_color);
    border-color: var(--link_hover_color);
    border-radius: 0;
    border-width: 2px;
    font-weight: var(--font-weight-bolder);
    font-family: var(--title-font-family);
}
.know_more_btn:hover
{
    color: var(--dark_color);
    border-color: var(--primary_color);
    background-color: var(--secondary_color);
}
/*---------------------------------------
  PAGINATION
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p_color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary_color);
  color: var(--white_color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section_bg_color);
  border-radius: var(--border-radius-small);
}

.active>.page-link, .page-link.active {
  background-color: var(--secondary_color);
  border-color: var(--secondary_color);
}


/*---------------------------------------
  TIMELINE
-----------------------------------------*/
.timeline-section {
  background-image: url('../images/img_1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: var(--primary_color);
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--secondary_color);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 40px;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary_color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--secondary_color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--white_color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: var(--primary_color);
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: var(--primary_color);
}


/*---------------------------------------
  FAQs
-----------------------------------------*/
.faq-section .accordion-item {
  border: 0;
}

.faq-section .accordion-button {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
}

.faq-section .accordion-item:first-of-type .accordion-button {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:focus
{
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--primary_color);
}

.faq-section .accordion-body {
  color: var(--p_color);
  font-size: var(--btn-font-size);
  line-height: 40px;
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-semibold);
}

/*---------------------------------------
  NEWSLETTER
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CONTACT
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}


/*---------------------------------------
  SUBSCRIBE FORM
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}

/*---------------------------------------
  CUSTOM FORM
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  color: var(--p_color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 20px;
  outline: none;
  font-size: 13px;
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--link_hover_color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white_color);
  /*font-family: var(--title-font-family);*/
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
  padding-right: 20px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom_btn_bg_hover_color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
.site-footer {
  border-bottom: 10px solid var(--secondary_color);
  position: relative;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent var(--secondary_color) transparent;
  pointer-events: none;
}

.site-footer-title {
  color: var(--primary_color);
  padding-right: 40px;
}

.site-footer .dropdown-menu {
  padding: 0;
}

.site-footer .dropdown-item {
  color: var(--p_color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding: 4px 18px;
}

.site-footer .dropdown-item:hover {
  background-color: transparent;
  color: var(--primary_color);
}

.site-footer .dropdown-menu li:first-child .dropdown-item {
  padding-top: 10px;
}

.site-footer .dropdown-menu li:last-child .dropdown-item {
  padding-bottom: 12px;
}

.site-footer .dropdown-toggle {
  background-color: var(--secondary_color);
  border-color: var(--white_color);
}

.site-footer .dropdown-toggle:hover {
  background-color: var(--primary_color);
  border-color: transparent;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  display: block;
  list-style: none;
  line-height: normal;
}

.site-footer-link {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
}

.site-footer-link i
{
    font-size: 20px;
}

.main_contact .site-footer-link
{
    font-size: var(--h5-font-size);
}

.icons_title
{
    font-size: var(--p-font-size);
    float: left;
    margin-right: 5px;
    margin-top: 10px;

}

.copyright-text {
  font-size: var(--copyright-font-size);
}

@media (max-width : 848px)
{
    .site-footer .site-footer-links
    {
        margin-right: 30px;
    }
}

@media (max-width : 767px)
{
    .copyright-text
    {
        margin-right: 130px;
    }
}

@media (max-width : 409px)
{
    .icons_title
    {
        font-size: 18px;
    }
}

@media (max-width : 376px)
{
    .icons_title
    {
        font-size: 14px;
    }
}

/*---------------------------------------
  SOCIAL ICON
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary_color);
  border-radius: var(--border-radius-large);
  color: var(--white_color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary_color);
  color: var(--white_color);
}


/*---------------------------------------
  RESPONSIVE STYLES
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar {
    background-color: var(--secondary_color);
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    right: 100px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
    box-shadow: none;
    margin-top: -10px;
  }

 .nav-item .dropdown-menu .dropdown-item
  {
    font-size: var(--p-font-size);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
}

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .custom-block-topics-listing .custom-block-image {
    width: auto;
  }

  .custom-block-topics-listing > .d-flex,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing a {
    flex-direction: column;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 75%;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .splitor
    {
        display: none;
    }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}


