-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
112 lines (102 loc) · 5.8 KB
/
about.html
File metadata and controls
112 lines (102 loc) · 5.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BOXMad</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<link href="css/footer.css" rel="stylesheet" type="text/css" />
<link href="css/about.css" rel="stylesheet" type="text/css" />
<link href="css/components.css" rel="stylesheet" type="text/css" />
<link href="css/responsive.css" rel="stylesheet" type="text/css" />
<link rel="icon" type= "image/x-icon" href="img/logoico.ico"/>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<!--Estos es para los iconos de los socials-->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<!-- Manu -->
<!-- Manu -->
<header class="header-nav">
<div class="nav-logo"><a href="index.html"><img class="img-nav" src="img/logo-transparent.png"></a></div>
<nav class="nav">
<a href="index.html" class="btn-nav">HOME</a>
<a href="boxPark.html" class="btn-nav">BOXPARK</a>
<a href="packs.html" class="btn-nav">SERVICES</a>
<a href="about.html" class="btn-nav">ABOUT US</a>
<a href="contact.html" class="btn-nav">CONTACT</a>
</nav>
</header>
<nav class="secundary-nav" role="navigation">
<div id="menuToggle">
<input type="checkbox" />
<span></span>
<span></span>
<span></span>
<ul id="menu">
<li><a href="index.html">HOME</a></li>
<li><a href="boxPark.html">BOXPARK</a></li>
<li><a href="packs.html">SERVICES</a></li>
<li><a href="about.html">ABOUT US</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
</nav>
<!--content-->
<div class="wrap">
<h1 id="bunge-title">About Us</h1>
<h2>Facilities</h2>
<p class="parrafo underlined underlined--gradient">
In BOXMad we have facilities in Madrid, Spain for dynamics. It is the training camp in nature specially conceived for interested clients, whose objective is to develop competencies and skills related to team building. The dynamics have an exceptional design, and are absolutely versatile in terms of their orientation to objectives, execution and feedback. They are designed so that anyone, regardless of age or physical condition, can develop them. They cover all the professional skills development needs of work teams. Our brilliant method of design and execution of training actions has a real impact on people's attitudes and behaviors, and these changes have a direct impact on the team's results. We also have the best specialists in Experiential Training and experts.
</p>
<h2>Activities: Our Objectives</h2>
<p class="parrafo2 underlined underlined--gradient">
With these activities we apply a learning methodology of high emotional impact and eminently practical and experiential, in which we seek:
</p>
<ul class="underlined underlined--gradient">
<li>
To foster positive attitudes towards cohesion and collaboration among work teams, which facilitate the improvement of professional and personal relationships from different perspectives.
</li>
<li>
Develop emotional skills such as fluid and responsive communication, stress resilience and confidence, key competencies of high performance.
</li>
<li>
Reinforce flexible and adaptive behaviors in work teams, making them competent and prepared to respond favorably in times of change.
</li>
<li>
Promote a culture of improvement, learning and innovation.
</li>
<li>
Encourage attitudes that promote leadership, integration and high performance in both the short and long term.
</li>
<li>
Transmit corporate values and company identity, reinforcing internal links and the feeling of belonging.
</li>
<li>
Increase motivation, alignment and commitment to the overall objectives of the company or client.
</li>
</ul>
<p class="parrafo2 underlined underlined--gradient">
At BOXMad, in addition to having facilities to develop activity programs for interested clients, we work with professionals, both facilitators and technicians, to address your Outdoor Training projects in the best way possible. and technicians, to approach your Outdoor Training projects in a global way, adapting and adapting each activity to your needs. If you are looking for an outdoor activity for the Development of Competences, and that also have a real impact on have a real impact on behaviors and attitudes, this is your method with guaranteed results. Talk to us and us and get to know the Experiences we can offer you and the results you can results you can achieve.
</p>
<h2>About us</h2>
<p class="parrafo underlined underlined--gradient">
We are an interdisciplinary team of people with extensive experience in the organization of experiential training activities. We have the great advantage of having designed facilities, whose only objective since its conception has been to meet the needs and expectations of the work teams. GET TO KNOW THEM!
</p>
</div>
<!--JAVI footer -->
<div id="footer-placeholder"></div>
<!--Estas líneas de código me permiten reusar el código que contiene footer.html-->
<script>
$(function () {
$("#footer-placeholder").load("footer.html");
});
</script>
<!--end of footer -->
<script src="about.js"></script>
</body>
</html>