/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2024 @ malgum - group
 */





/*-----------------------------------*\
  #VARIABLE
\*-----------------------------------*/

@import url(/var.css);

@import url('https://fonts.googleapis.com/css2?family=Reem+Kufi:wght@600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Changa:wght@300&display=swap');
@import url("http://www.fontstatic.com/f=bahij");


@font-face {
  font-family: New ;
  src: url(font/blank.ttf);
}

.black-ops-one-regular {
  font-family: "Black Ops One", system-ui;
  font-weight: 400;
  font-style: normal;
}

.dm-serif-display-regular {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}

.dm-serif-display-regular-italic {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: italic;
}

.lobster-regular {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
}






/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*{
  margin:0; padding:0;
  box-sizing: border-box;
  outline: none; border:none;
  text-decoration: none;
  text-transform: capitalize;
  transition: .2s linear;
  font-family: 'Changa', sans-serif;
  list-style: none;
}
body{
  background-color: #F5F8F3;
  background-image: url(/img/5896710.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

html{
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}



::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track{
  background: #111 ;
}

::-webkit-scrollbar-thumb{
  background: var(--accent);
}



li { list-style: none; }

a {
  text-decoration: none;
  font: inherit;
}

img, span, a, ion-icon { display: block; }

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}


   
hr{
  margin: 3rem 0 0 0;
 border: 1PX solid #ccc;
}


/*-----------------------------------*\
  #           scroll-btn            #
\*-----------------------------------*/


.scroll-btn {
  
    position: fixed;
    right: 1.5rem;
    bottom: 2rem;
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: var(--new-blue);
    box-shadow: 1px 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    border: 1px solid #353535;
  }
  
  
  .scroll-btn2 {
    
    position: fixed;
    right: 1.5rem;
    bottom: 4.5rem;
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: var(--new-blue);
    box-shadow: 1px 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    border: 1px solid #353535;
  }
  
  .scroll-btn3 {
    
    position: fixed;
    right: 1.5rem;
    bottom: 7rem;
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: var(--new-blue);
    box-shadow: 1px 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    border: 1px solid #353535;
  }
  
  


  
section{
    padding:2rem 4%;
}






  
/*-----------------------------------*\
  # NAVBAR
\*-----------------------------------*/

.navbar {
    
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display:         flex;
    justify-content: space-between;
    align-items:     center;
    padding: 10px var(--px);
    z-index: 100;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    border-bottom: 1px solid #000101;
    border-radius: 2rem;
  background-color: #F5F8F3;
  }
  
  
  .navbar-nav {
    position: absolute;
    top: calc(100% + 40px);
    left:  40px;
    right: 30px;
    text-align: center;
    box-shadow: 0 10px 30px -5px hsla(0, 0%, 0%, 0.25);
    padding: 50px;
    border-radius: 18px;
    opacity: 0;
    margin-left: 10px;
    transform: scale(0.8);
    pointer-events: none;
  }
  .navbar-brand{
    width: 74px;
  }
  
  .navbar-brand img{
    width: 74px;
  }
  .nav-item a {
    padding:  5px 15px ;
    font-size: var(--fs-10);
    font-weight: var(--fw-6);
    color: var(--light-dark);
    transition: var(--default-transition);
  }
  
  .nav-item:not(:last-child) a { border-bottom: 1px solid hsla(0, 0%, 0%, 0.1); }
  
  .nav-item a:hover { color: var(--accent); }
  
  .navbar-nav.active {
    animation: menuPopup 0.5s ease forwards;
    pointer-events: all;
  }
  
  @keyframes menuPopup {
  
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
  
    50% { transform: scale(1.1); }
  
    100% {
      opacity: 1;
      transform: scale(1);
    }
  
  }
  
  .navbar .btn { display: none; }
  
  .nav-toggle-btn {
    background: #143e3a0a;
    width:  30px;
    height: 30px;
    border-radius: 8px;
    display:         flex;
    flex-direction:  column;
    justify-content: center;
    align-items:     center;
    gap: 6px;
  }
  
  .nav-toggle-btn span {
    background: var(--white);
    width: 30px;
    height: 2px;
    transition: var(--default-transition);
  }
  
  .nav-toggle-btn.active .one { transform: rotate(45deg) translate(3px, 3px); } 
  
  .nav-toggle-btn.active .two { display: none; }
  
  .nav-toggle-btn.active .three { transform: rotate(-45deg) translate(2px, -2px); }
  
  
  


  img{
    display: block;
  }
  
  .d-flex{
    display: flex;
  }
  
  .p-relative{
    position: relative;
  }
  
  
  .navbar .nav-list{
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
    color: #72757b;
  }
  
  .nav-list .list-item i{
    padding: 5px;
    border-radius: 50%;
    color: #333;
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-list .list-item:hover i{
    border-radius: 25%;
    color: #333;
    height: 32px;
    width: 32px;
    background-color: #cecece;
  }
  
  .nav-list .list-item h1{
    font-size: 1.5rem;
  }
  
  .nav-list .list-item .bi-person-circle{
    font-size: 2rem;
  }
  
  
  .list-item:hover .app-container{
    opacity: 1;
    visibility: visible;
  }
  
  

  

/*-----------------------------------*\
  #COMPONENT
\*-----------------------------------*/

.btn {
    position: relative;
    font-family: "Roboto", sans-serif;
    font-size: var(--fs-10);
    font-weight: var(--fw-5);
    border-radius: 8px;
    color: var(--white);
    padding: 10px 20px;
    margin-left: 15PX;
    text-transform: uppercase;
    overflow: hidden;
  }
  
  .btn .btn-text {
    position: relative;
    z-index: 5;
  }
  
  .btn-primary,
  .btn-secondary .square { background: var(--darkblue3); }
  
  .btn .square {
    position: absolute;
    top:   50%;
    right: 10px;
    transform: translateY(-50%);
    width:  30px;
    height: 30px;
    border-radius: 8px;
    transition: var(--default-transition);
  }
  
  .btn:hover .square {
    right: -2px;
    width:  102%;
    height: 102%;
  }
  
  .btn-primary .square,
  .btn-secondary { background: var(--accent); }
  
  
.text-pp{ margin-top: 1rem; font-weight: 550; 
  text-align: justify;
    letter-spacing: 1px; 
    line-height: 40px; 
    margin-bottom: 1rem; 
    font-size: 18px; 
    color:rgba(8, 8, 8, 0.867); 
}

















/*-----------------------------------*\
  # HEADER - SECTION
\*-----------------------------------*/
  
header {
    padding-left: 4%;
    padding-right: 4%;
    margin-top: 7rem;
    width: 100%;
    position: relative;
    perspective: 100rem;
    overflow: hidden;
  }
  
  .img-wrapper {
    margin-bottom: 5rem;
    border-radius: 5rem;
    width: 100%;
    height: 560px;
    background-color: rgba(0, 0, 0, 0.159);
    overflow: hidden;
  }
  
  .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    animation: scale 25s;
  }
  
  @keyframes scale {
    0% {
      transform: scale(1.5);
    }
    50% {
      transform: scale(1.3);
    }
    
    100% {
        transform: scale(1);
      }
  }
  
  .header-center .cen .p-header{

  font-family: 'Changa', sans-serif;
  letter-spacing: 3px;
  font-weight: 1000; font-size: 18px; color: #232323;
}
 


.header .heads{
  font-size: 74px;
  text-align: center; 
  margin: 4rem; 
  margin-bottom: 2rem;
  font-family: "Black Ops One", system-ui;
  letter-spacing: 11px;
  color: #000101;
}


.header .heads2{
  display: none;
}


.header .head-sec-h{
  color: #143E3A;
  text-align: center;  
  font-size: 1rem; 
  line-height: 4rem; 
  font-weight: 900; 
  margin-bottom: 2rem; 
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; letter-spacing: 4px; font-weight: 900; width: 100%; 
  font-weight: 600;
}



  
.section-title {
  
    font-size: var(--fs-8);
    font-weight: var(--fw-10);
    color: var(--primary1);
    line-height: 1.2;
  }



  .section-title h2{
    color: #000;
    font-family: "DM Serif Display", serif;
    font-size: 62px;
    letter-spacing: 8px;
    text-align: left;
    color: #143E3A;
    letter-spacing: 6px; 
    line-height: 6rem;
    margin-bottom: 2rem;
  }
  
  
  

.our-services{
  display: block;
   padding-left: 10%;
    padding-right: 10%;
      align-items: center;
       align-content: center;
        text-align: center;
         justify-content: center;
   margin-top: 8rem;
}





















  

/*-----------------------------------*\
  # Main - SECTION
\*-----------------------------------*/
  
/* section - about us */

.containerthree{
  max-width: 100vw;
  align-items: center;
  padding: 0 .2rem;
}

.containerthree .info-course{
margin-top: 5rem;
}


.section-three-content .info-course{

background-color: #ffb33129;
height: 700px;
padding: 2%;
border-radius: 5%;
}

.section-three-content{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 4rem;
  margin-bottom: 6rem;
}


.section-three{
  padding: 8rem 0;
}
.section-three-content .img {
  max-width: 100%;
  margin: auto;
  align-items: center;
}

.info .text {
  color: #f29123; 
  text-align: center;
  font-size: 12px; 
  width: 8vw; 
  padding-top: 8px; 
  padding-bottom: 8px;
  margin-bottom: 2rem;
  letter-spacing:2px; 
  border: 1px solid #f29123; 
  border-radius: 24px;
}


.info .text2 {
  color: #f29123; 
  text-align: center;
  font-size: 12px; 
  width: 8vw; 
  padding-top: 8px; 
  padding-bottom: 8px;
  margin-bottom: 2rem;
  letter-spacing:2px; 
  border: 1px solid #f29123; 
  border-radius: 24px;
}



.section-title .head-sec-about{
  width: 100%; 
  text-align: left;  
  font-size: 2.8rem; 
  line-height: 5rem; 
  font-weight: 900; 
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; 
  letter-spacing: 4px; 
}
























.container {
  width: 100%;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 710px;
}
h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #1a1a1a;
}
p {
  font-size: 18px;
  font-weight: 400;
  color: #747474;
  letter-spacing: .5px;
  text-align: justify;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
a.zoomed p {
  -webkit-line-clamp: unset;
}
a.zoomed .card-inner {
  overflow: auto;
}
a.opacity-0 {
  opacity: 0;
}
.overflow {
  overflow: hidden;
}
.overflow .background {
  opacity: 0 !important;
}

.background {
  background-color: #f29123ac;;
  border-radius: 20px;
  position: absolute;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.card-wraper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: space-between;
}
a.card {
  text-decoration: none;
  height: 100%;
  width: 100%;
  display: inline-block;
  position: relative;
  padding: 10px;
}
.card-main {
  border: 1px solid #1a5582;
  padding: 40px;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #0000000d;
}
.card:hover .card-main {
  position: relative;
  z-index: 20;
}
.card-inner {
  position: relative;
  z-index: 50;
  height: 100%;
}
.card-inner div {
  height: 100%;
}
img {
  height: 100%;
  width: 100%;
}


















/* spacer */
.spacer{
  height:150px;
  width:100%;
}
.spacer2{
  height:20px;
  width:100%;
}
/* spacer ends */

/* slider styles */
.sd_master_wrapper{
	position: relative;	
	max-width:900px;
	margin:0 auto;
	padding:0;
	border-radius:10px;
	z-index:9999;
}
.sdtestBg3{
	height: 100%;
    width: 80%;
    background: #ffffff00;
    position: absolute;
    bottom: -40px;
    left: 10%;
    border-radius: 20px;
    box-shadow: 0px 18px 52.8537px rgba(215, 228, 249, 0.185);
	z-index:1;
}
.sdtestBg2{
	height: 100%;
    width: 90%;
    background: #ffffff45;
    position: absolute;
    bottom: -22px;
    left: 5%;
    border-radius: 20px;
    box-shadow: 0px 18px 52.8537px rgb(215 228 249 / 50%);
	z-index:2;
}

.sd_scroll {
	height: auto;
    max-height: 180px;
    overflow: auto;
}
	
.slideshow {
    position: relative;
    min-height: 300px;
    height: auto;
    background: #ffffff76;
    box-shadow: 0px 18px 52.8537px rgba(215, 228, 249, 0.5);
    border-radius: 20px;
    background-image: url(https://farsighttechnologies.com/wp-content/uploads/2021/03/quote1.png), url(https://farsighttechnologies.com/wp-content/uploads/2021/03/quote.png);
    background-position: top 15px left 15px, bottom 40% right 15px;
    background-repeat: no-repeat;
    background-size: 180px, 180px;
	z-index:3;
}
button.slick-prev.slick-arrow {
    position: absolute;
    z-index: 9999;
    bottom: -80px;
    right: 160px;
    background: transparent;
    color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    height: 15px;
    width: 30px;
    padding: 0;
    background-image: url(https://farsighttechnologies.com/wp-content/uploads/2021/03/left-icon.png);
    background-size: 100% 100%;
}
button.slick-next.slick-arrow {
    position: absolute;
    bottom: -82px;
    right: 105px;
    background: transparent;
    color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    height: 18px;
    width: 40px;
    background-image: url(https://farsighttechnologies.com/wp-content/uploads/2021/03/right-icon.png);
    background-size: 100% 100%;
}
.pagingInfo {
    position: absolute;
    bottom: 0;
    z-index: 999;
}
.sdCustomSliderHeadig {
    color: #94A2B3;
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6em;
    text-align: center;
}
.sdCustomSliderBtn{
    display: inline-block;
    text-decoration: none;
    font-family: montserrat;
    background: #E31C3A;
    color: #fff;
    padding: 12px 25px;
    margin-top: 30px;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
    font-weight: 500;
}
.sdAllContent{
	width:75%;
	margin:auto;
}
.thumbnail img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    margin: auto;
    margin-top: 15px;
}
.content{
	display:block !important;
	padding: 5px;
}
.SdClientName {
    text-align: center;
    color: #272D4E;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4em;
	margin-top: 15px;
}
.SdClientDesc {
    text-align: center;
    color: #1c1c1c;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    line-height: 2.4em;
    margin-top: 8px;
	margin-bottom: 10px;
}



/* scroll bar */
/* total width */
.sd_scroll::-webkit-scrollbar {
    background-color:transparent;
    width:6px;
}

/* background of the scrollbar except button or resizer */
.sd_scroll::-webkit-scrollbar-track {
    background-color:transparent;
}
.sd_scroll::-webkit-scrollbar-track:hover {
    background-color:transparent;
}

/* scrollbar itself */
.sd_scroll::-webkit-scrollbar-thumb {
    background-color:#babac0;
    border-radius:16px;
    
}
.sd_scroll::-webkit-scrollbar-thumb:hover {
    background-color:#a0a0a5;
}



















.contact__info___list{
  width: 400px;
  align-items: center;
  justify-content: center;
  
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 5rem;
  padding-left: 1rem;
  
}

.contact__info__list__items{
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin: 8px 0px;
}
.contact__info__list__items i{
  align-items: flex-start;
  font-size: 24px;
  padding: 14px;
  background: #0d2e44be;
  border-radius: 100%;
  color: #FEC25A;
}
.contact__info__list__items p{
  font-size: 15px;
}

.contact__info__list__items p a{
  text-decoration: none;
  color: #000;
}




.contact__form{
  padding: 10px 0px;
  display: block;
  width: 100%;
}

.contact__form__item{
  margin: 10px 0px;
}

.contact__form__item input,
.contact__form__item textarea{
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  min-height: 42px;
  margin-bottom:1rem;
background:  none repeat scroll 0 0;
border-bottom: 1px solid #a1a1a1;
  border-radius: 4px;
  padding: 6px 10px;
}

.contact__form__item input:focus,
.contact__form__item textarea:focus{
  outline: none;
  border: 2px solid #FEC25A;
}

.contact__form__item label{
  display: inline;
  padding: 2px 0px;
  font-size: 15px;
  font-weight: 500;
}
.contact__form__submit{
  width: 100%;
  padding: 8px 12px;
  background: #f29123;
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  cursor: pointer;
}
.contact__form__submit:hover{
  background: var(--darkblue);
  color: var(--accent);
  border: 2px solid #c2c2c290;
}

.contact__info___list{
  width: 100vw;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 5rem;
  margin-top: -7rem;
  padding-right: 1rem;
  
  margin-bottom: 4rem;
  
}








.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .1rem .5rem;
}



.card__footer2 {
  padding: 0;
}
.card__tag {
  font-size: 1rem;
  font-weight: 600;
}

.card__button {
  display: flex;
  align-items: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.775rem;
  text-transform: uppercase;
  background-color: var(--accent);
  padding: .5rem .5rem;
  border-radius: 8px;
}
.card__button a {
  background: none; 
   color: #2d2d2d;
}


.btn-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.8em;
  margin-bottom: .4rem;
  height: 14px;
  width: 14px;
}

.btn-icon2 {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.2em;
  margin-bottom: .4rem;
  height: 14px;
  width: 14px;
}
.section-title .h22{
  font-size: 76px;
  letter-spacing: 8px;
}





.section-three-content .contact{
  font-weight: 4000; 
  font-size: 40px; 
  margin-top: 2rem;
text-align: justify;
  direction: rtl;
  letter-spacing: 1px;
  text-align: right;
}

.btn1111 {
border: none;
border-radius: 10px;
color: var(--accentComplimentary);
font-family: 'Bai Jamjuree', sans-serif;
font-size: 16px;
padding: 1px 35px;
margin: 15px 5px;
width: 46%;
font-family: 'Changa', sans-serif;
font-size: 16px;
line-height: 2.5;
}


.btn1111 a{
color: var(--accentComplimentary);
font-family: 'Changa', sans-serif;
}

.btn-primary11 {
box-shadow: 0 .51px var(--accent);
}





.row2{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: .1rem;
  padding-bottom: 2rem;
}


.col p{
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #000;
}
.row hr{
  opacity: 0.7;
}

@media (max-width: 600px){
.row2{
      flex-direction: column;
      padding: 20px 30px;
  }

}













/*-----------------------------------*\
  #####     start - footer       #####
\*-----------------------------------*/
footer{
  padding: 4%;
}
footer .foter {
  border-radius: 4rem;
  max-width: 100vw;
  width: 100%;
  background-color: #000101;
  display: grid;
  padding: 1% 5% 0 5%;
}
footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  
}
footer .box-container2{
  display:         flex;
  justify-content: space-between;
  align-items:     center;
}

footer .box-con{
  width: 100%; 
  display: grid; 
  grid-template-columns: repeat(2,1fr);
  gap: 4%; 
  margin-bottom: 2rem;
}
.footer-row .footer-col h4 {
  color: #f29123;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
}
.footer-col .links {
  margin-top: 20px;
  
}
.footer-col .links li {
  list-style: none;
  margin-bottom: 20px;
}
.footer-col .links li a {
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #dfdfdf;
  
}
.footer-col .links li a:hover {
  color: #fff;
}
.footer-col p {
  margin: 20px 0;
  color: #bfbfbf;
  max-width: 300px;
}
.footer-col form {
  display: flex;
  gap: 5px;
}
.footer-col input {
  height: 40px;
  border-radius: 6px;
  background: none;
  width: 100%;
  outline: none;
  border: 1px solid #7489C6 ;
  caret-color: #fff;
  color: #fff;
  padding-left: 10px;
}
.footer-col input::placeholder {
  color: #ccc;
}
 .footer-col form button {
  background: #fff;
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
}
.footer-col form button:hover {
  background: #cecccc;
}
.footer-col .icons {
  display: flex;
  margin-top: 30px;
  gap: 30px;
  cursor: pointer;
}
.footer-col .icons i {
  color: #afb6c7;
}
.footer-col .icons i:hover  {
  color: #fff;
}
@media (max-width: 768px) {
  footer {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
  }
  footer .footer-row {
    padding: 20px;
    
  direction: rtl;
  }
  .footer-col form {
    display: block;
  }
  .footer-col form :where(input, button) {
    width: 100%;
  }
  .footer-col form button {
    margin: 10px 0 0 0;
  }
}












.box2b .social-icons
{
  text-align:right;
  display: flex;
  
}
.box2b .h111{
  
font-family: "DM Serif Display", serif;
color: #f29123; 
font-size: 58px; 
text-align: left; 
letter-spacing: 7px;
}
.box2b .social-icons li i
{
  width:40px;
  height:40px;
  text-align: center;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:10%;
  color: var(--accent);
  box-shadow: 3px 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
  border: 1px solid #353535;
}




.icons .social-icons  a{
color: white;
font-size: 14px;
word-spacing: 4px;
letter-spacing: 2px;
text-transform: capitalize;
margin-bottom: 1rem;
}
    

.box-container2 .list{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0 1rem 0;
  font-size: .8rem;
}


.box-container2 .list li{
  margin: 0 10px;
}

.box-container2 .list a{
  text-decoration: none;
  color: white;
}

.box-container2 .list a:hover {
  color:teal ;
}


  



.box2b .banner-img{
  width: 250px;
  align-content: center;

}


.box2b h3{
  font-size: 2.4rem;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 3rem;
  color: white;
  font-style:oblique;
  }
  
  .box2b h3 span{
    font-style:oblique;
  font-size: 2.6rem;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 3rem;
   color:#3BACB6;
  }
  
  
    
  .box2b{
  width: 100vm;
  padding: 20px 0;
  text-align: center;
  }
  
  .box2b p{
  font-size: 14px;
  word-spacing: 2px;
  text-transform: capitalize;
  color: white;
  }
  
  .box2b span{
  text-transform: uppercase;
  opacity: 5;
  font-weight: 200;
  }
  
  




.footerbottom{
margin-top: 2rem;
}



  .footerbottom p{
    padding: 2rem;
    text-align: center;
    font-size: 14px;
    word-spacing: 3px;
    letter-spacing: 3px;
    text-transform: capitalize;
    color: rgb(91, 91, 91);
    }


